Files
kutt-extension/source/components/Icon/EyeClosed.tsx
2026-01-04 03:24:00 +05:30

20 lines
562 B
TypeScript

import React from 'react';
const EyeClosed: React.FC = () => (
<svg
width={16}
height={16}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
className="eye-off_svg__feather eye-off_svg__feather-eye-off"
>
<path d="M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19m-6.72-1.07a3 3 0 11-4.24-4.24M1 1l22 22" />
</svg>
);
export default React.memo(EyeClosed);