josemi/icons
v0.6.1
eye-slash
Added: v0.1.0
eyeslashviewvision
Download
Download the icon as SVG image to use or edit it.
Download Icon
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG

Embed this icon within HTML

Copy and paste the following SVG code into your HTML file where you want the icon to appear. Then, you can customize the SVG attributes, such as size or color, using inline styling or CSS classes.

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
    <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3L21 21M7.29854 7.37352C4.40586 9.16759 3 12 3 12C3 12 6.00002 17.9846 12 18C14.7979 18.0072 16.6457 16.6728 16.6457 16.6728M10.5132 10.669C10.0665 10.9397 10 12 10 12C10 12 10 14.0021 12 14C12.7875 13.9992 13.3628 13.4577 13.3628 13.4577M11.0083 6.05761C11.4907 5.96848 12 6 12 6C18 6 21 12 21 12C21 12 20.939 12.2946 19.538 14.1846" />
</svg>

Using as a React Component

You can integrate this icon in your React application using our React icons components. First install the package using YARN or NPM:

$ yarn add @josemi-icons/react

Now you can import this icon in your React application

import {EyeSlashIcon} from "@josemi-icons/react";

Alternatively, if you only need this icon jou can just copy and paste the following component into your React application:

const EyeSlashIcon = () => (
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
        <path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M3 3L21 21M7.29854 7.37352C4.40586 9.16759 3 12 3 12C3 12 6.00002 17.9846 12 18C14.7979 18.0072 16.6457 16.6728 16.6457 16.6728M10.5132 10.669C10.0665 10.9397 10 12 10 12C10 12 10 14.0021 12 14C12.7875 13.9992 13.3628 13.4577 13.3628 13.4577M11.0083 6.05761C11.4907 5.96848 12 6 12 6C18 6 21 12 21 12C21 12 20.939 12.2946 19.538 14.1846" />
    </svg>
);

You can now use the icon component in your React application like any other React component.

Designed by Josemi. Source code available on GitHub.