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

21 lines
437 B
TypeScript

import React from 'react';
const Eye: React.FC = () => (
<svg
width={16}
height={16}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
className="eye_svg__feather eye_svg__feather-eye"
>
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" />
<circle cx={12} cy={12} r={3} />
</svg>
);
export default React.memo(Eye);