21 lines
439 B
TypeScript
21 lines
439 B
TypeScript
export function ArrowIcon({ className = "" }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="12"
|
|
height="12"
|
|
viewBox="0 0 12 12"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M1 11L11 1M11 1H3M11 1V9"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|