2023-11-13 12:00:46 +01:00
|
|
|
import { JSXElement } from "solid-js";
|
|
|
|
|
|
|
|
export function Arrow(): JSXElement {
|
2023-11-13 09:34:32 +01:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
2023-11-13 12:10:40 +01:00
|
|
|
|
|
|
|
export function loadSpinner(): JSXElement {
|
|
|
|
return <span class="loading loading-spinner loading-lg self-center"></span>;
|
|
|
|
}
|