mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
10 lines
243 B
Svelte
10 lines
243 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils";
|
|
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<p class={cn("text-sm text-muted-foreground", className)} {...$$restProps}>
|
|
<slot />
|
|
</p>
|