mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
17 lines
490 B
Svelte
17 lines
490 B
Svelte
<script lang="ts">
|
|
import * as FormPrimitive from "formsnap";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils/ui.js";
|
|
|
|
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<FormPrimitive.Description
|
|
class={cn("text-muted-foreground text-sm", className)}
|
|
{...$$restProps}
|
|
let:descriptionAttrs
|
|
>
|
|
<slot {descriptionAttrs} />
|
|
</FormPrimitive.Description>
|