softicons.dev

eye off icon

Free eye off SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <path d="M9.9 4.2A9.1 9.1 0 0 1 12 4c6.5 0 10.5 8 10.5 8a18 18 0 0 1-2.3 3.4"/>
  <path d="M6.6 6.6A18 18 0 0 0 1.5 12s4 8 10.5 8a9 9 0 0 0 5.4-1.6"/>
  <path d="M9.9 9.9a3 3 0 0 0 4.2 4.2"/>
  <line x1="2" y1="2" x2="22" y2="22"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/eye-off.svg"
     width="24" height="24" alt="eye off icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { EyeOffIcon } from "@softicons/react";

export default function Example() {
  return <EyeOffIcon size={24} strokeWidth={2} />;
}
<script setup>
import { EyeOffIcon } from "@softicons/vue";
</script>

<template>
  <EyeOffIcon :size="24" :stroke-width="2" />
</template>
import { EyeOffIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [EyeOffIconComponent],
  template: `<eye-off-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}