18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
![]() |
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>
|
||
|
);
|
||
|
}
|