mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 16:49:42 +00:00
Co-authored-by: Elias Schneider <login@eliasschneider.com> Co-authored-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
15 lines
382 B
Svelte
15 lines
382 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils/style.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}
|
|
/>
|