Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x 1x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x | /**
* EyeOffIcon - Eye-off icon for hide actions
* Commonly used for hide password, turn off visibility
*/
export default function EyeOffIcon({
width = 16,
height = 16,
className = 'fill-current',
...props
}: React.SVGProps<SVGSVGElement>) {
return (
<svg
{...props}
className={className}
width={width}
height={height}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M1.64645 1.64645C1.84171 1.45118 2.15829 1.45118 2.35355 1.64645L14.3536 13.6464C14.5488 13.8417 14.5488 14.1583 14.3536 14.3536C14.1583 14.5488 13.8417 14.5488 13.6464 14.3536L11.1729 11.8801C10.2135 12.4431 9.14319 12.8333 8 12.8333C5.43358 12.8333 3.66577 11.3034 2.57949 9.89214C2.28709 9.51228 2.11584 9.2853 2.00319 9.03031C1.8979 8.792 1.83334 8.50072 1.83334 8C1.83334 7.49929 1.8979 7.20801 2.00319 6.9697C2.11584 6.71471 2.28709 6.48773 2.57949 6.10787C3.12262 5.40245 3.84144 4.6232 4.73229 3.93938L1.64645 0.853554C1.45118 0.658291 1.45118 0.341709 1.64645 0.146447C1.84171 -0.0488155 2.15829 -0.0488155 2.35355 0.146447L1.64645 1.64645ZM5.44638 4.65347C4.62896 5.26848 3.96098 5.98047 3.47203 6.59214C3.17964 6.97199 3.00838 7.19897 2.89573 7.454C2.79044 7.69231 2.72588 7.98359 2.72588 8.48429C2.72588 8.985 2.79044 9.27628 2.89573 9.51459C3.00838 9.76962 3.17964 9.9966 3.47203 10.3765C4.48086 11.6877 6.09621 12.8333 8 12.8333C8.85737 12.8333 9.65315 12.6187 10.3729 12.3271L9.27865 11.2328C8.89268 11.4639 8.44007 11.5952 7.96032 11.5C7.02044 11.3181 6.28185 10.5796 6.10001 9.63969C6.00477 9.15993 6.13607 8.70732 6.36722 8.32135L5.44638 4.65347Z"
fill="currentColor"
/>
<path
d="M13.4209 9.89214C13.7133 9.51228 13.8845 9.2853 13.9972 9.03031C14.1025 8.792 14.167 8.50072 14.167 8C14.167 7.49929 14.1025 7.20801 13.9972 6.9697C13.8845 6.71471 13.7133 6.48773 13.4209 6.10787C12.3346 4.69662 10.5668 3.16666 8 3.16666C7.03744 3.16666 6.15544 3.40692 5.37063 3.76903L6.10862 4.50702C6.71282 4.25376 7.34145 4.08333 8 4.08333C10.0639 4.08333 11.52 5.31339 12.5283 6.59214C12.8207 6.97199 12.992 7.19897 13.1046 7.454C13.2099 7.69231 13.2745 7.98359 13.2745 8.48429C13.2745 8.985 13.2099 9.27628 13.1046 9.51459C12.992 9.76962 12.8207 9.9966 12.5283 10.3765C12.1168 10.9109 11.5907 11.4723 10.9372 11.9582L11.6752 12.6962C12.4064 12.1425 13.0218 11.5049 13.4209 10.9357V9.89214Z"
fill="currentColor"
/>
<path
d="M8 5.41666C8.27614 5.41666 8.5 5.64052 8.5 5.91666V6.20711L10.2929 8L9.79289 8.5L8 6.70711V5.91666C8 5.64052 8.27614 5.41666 8.5 5.41666Z"
fill="currentColor"
/>
</svg>
);
}
|