Spaces:
Running
Running
File size: 685 Bytes
336b102 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <script lang="ts">
import { cn } from '$lib/utils.js';
import Loader2Icon from '@lucide/svelte/icons/loader-2';
import type { SVGAttributes } from 'svelte/elements';
let {
class: className,
role = 'status',
// we add name, color, and stroke for compatibility with different icon libraries props
name,
color,
stroke,
'aria-label': ariaLabel = 'Loading',
...restProps
}: SVGAttributes<SVGSVGElement> = $props();
</script>
<Loader2Icon
{role}
name={name === null ? undefined : name}
color={color === null ? undefined : color}
stroke={stroke === null ? undefined : stroke}
aria-label={ariaLabel}
class={cn('size-4 animate-spin', className)}
{...restProps}
/>
|