mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-01 00:13:20 -05:00
This is just bad UX than a11y. Most of the time icons are used with contextual text but if stand-alone we should provide a better name in the context of the feature rather than a generic one.
26 lines
443 B
TypeScript
26 lines
443 B
TypeScript
export function ArrowLongLeftIcon({
|
|
className,
|
|
title,
|
|
}: {
|
|
className?: string;
|
|
title?: string;
|
|
}) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
strokeWidth={2}
|
|
stroke="currentColor"
|
|
className={className}
|
|
>
|
|
{title ? <title>{title}</title> : null}
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M6.75 15.75L3 12m0 0l3.75-3.75M3 12h18"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|