Anton Malykhin
feat: add HiveTrace leaderboard frontend
336b102
Raw
History Blame Contribute Delete
685 Bytes
<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}
/>