first
This commit is contained in:
commit
0738070ce1
287 changed files with 10116 additions and 0 deletions
9
src/lib/components/ui/alert/alert-description.svelte
Normal file
9
src/lib/components/ui/alert/alert-description.svelte
Normal file
|
@ -0,0 +1,9 @@
|
|||
<script>
|
||||
import { cn } from "$lib/utils.js";
|
||||
|
||||
let { ref = $bindable(null), class: className, children, ...restProps } = $props();
|
||||
</script>
|
||||
|
||||
<div bind:this={ref} class={cn("text-sm [&_p]:leading-relaxed", className)} {...restProps}>
|
||||
{@render children?.()}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue