mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 04:02:40 -05:00
19 lines
415 B
TypeScript
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>
|
|
);
|
|
}
|