boredgame/src/lib/components/ui/card/card-description.svelte

14 lines
351 B
Svelte
Raw Normal View History

2023-09-14 01:43:22 +00:00
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils/ui.js";
2023-09-14 01:43:22 +00:00
type $$Props = HTMLAttributes<HTMLParagraphElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<p class={cn("text-muted-foreground text-sm", className)} {...$$restProps}>
2023-09-14 01:43:22 +00:00
<slot />
</p>