Files
flyer-crawler.projectium.com/components/icons/EyeIcon.tsx

9 lines
637 B
TypeScript

import React from 'react';
export const EyeIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M2.036 12.322a1.012 1.012 0 0 1 0-.639l4.443-7.532A1.012 1.012 0 0 1 7.23 4.001h9.54a1.012 1.012 0 0 1 .75.311l4.443 7.532a1.012 1.012 0 0 1 0 .639l-4.443 7.531a1.012 1.012 0 0 1-.75.311h-9.54a1.012 1.012 0 0 1-.75-.311L2.036 12.322Z" />
<path strokeLinecap="round" strokeLinejoin="round" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" />
</svg>
);