sendou.ink/app/components/icons/ArrowLongLeft.tsx
2022-10-27 13:31:36 +02:00

19 lines
415 B
TypeScript

export function ArrowLongLeftIcon({ className }: { className?: string }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={2}
stroke="currentColor"
className={className}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M6.75 15.75L3 12m0 0l3.75-3.75M3 12h18"
/>
</svg>
);
}