22 lines
669 B
TypeScript
22 lines
669 B
TypeScript
import type { JSX, SVGProps } from 'react'
|
|
|
|
export const EyeIcon = (
|
|
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
) => {
|
|
return (
|
|
<svg
|
|
width={28}
|
|
height={20}
|
|
viewBox="0 0 28 20"
|
|
fill="currentColor"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...properties}
|
|
>
|
|
<path
|
|
d="M14 .676C3.823.676.764 9.49.736 9.58L.595 10l.14.422c.03.09 3.088 8.903 13.265 8.903s13.236-8.814 13.264-8.903l.141-.421-.14-.42C27.236 9.49 24.177.675 14 .675zm0 14.652A5.336 5.336 0 018.667 10 5.336 5.336 0 0114 4.672 5.336 5.336 0 0119.333 10 5.336 5.336 0 0114 15.328z"
|
|
fill="#currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|