Quillan-Ronin / llama.cpp /tools /server /webui /src /lib /components /ui /skeleton /skeleton.svelte
| <script lang="ts"> | |
| import { cn, type WithElementRef, type WithoutChildren } from '$lib/components/ui/utils.js'; | |
| import type { HTMLAttributes } from 'svelte/elements'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| ...restProps | |
| } | |
| </script> | |
| <div | |
| bind:this={ref} | |
| data-slot="skeleton" | |
| class={cn('animate-pulse rounded-md bg-accent', className)} | |
| {...restProps} | |
| ></div> | |