datajunction-ui
Version:
DataJunction UI
20 lines (18 loc) • 433 B
JSX
const EyeIcon = ({ size = 14 }) => (
<svg
className="feather feather-eye"
fill="none"
height={size}
width={size}
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
xmlns="http://www.w3.org/2000/svg"
>
<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 EyeIcon;