Files
MediaManager/web/src/lib/components/ui/skeleton/skeleton.svelte
2025-04-27 18:04:50 +02:00

18 lines
495 B
Svelte

<script lang="ts">
import type {WithElementRef, WithoutChildren} from "bits-ui";
import type {HTMLAttributes} from "svelte/elements";
import {cn} from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
...restProps
}: WithoutChildren<WithElementRef<HTMLAttributes<HTMLDivElement>>> = $props();
</script>
<div
{...restProps}
bind:this={ref}
class={cn("bg-primary/10 animate-pulse rounded-md", className)}
></div>