FrostByte/client-solid/src/Icons.tsx

18 lines
361 B
TypeScript
Raw Normal View History

2023-11-13 09:34:32 +01:00
export function Arrow() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3" />
</svg>
);
}