feature/loading #21

Merged
ilia merged 12 commits from feature/loading into main 2026-02-06 09:20:09 +00:00
Showing only changes of commit 63888e510c - Show all commits

View File

@@ -0,0 +1,14 @@
<script lang="ts">
import { cn } from '$shared/shadcn/utils/shadcn-utils.js';
import Loader2Icon from '@lucide/svelte/icons/loader-2';
import type { ComponentProps } from 'svelte';
let { class: className, ...restProps }: ComponentProps<typeof Loader2Icon> = $props();
</script>
<Loader2Icon
role="status"
aria-label="Loading"
class={cn('size-4 animate-spin', className)}
{...restProps}
/>