mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-22 09:15:41 +03:00
14 lines
354 B
Svelte
14 lines
354 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import type { HTMLAttributes } from "svelte/elements";
|
||
|
|
import { cn } from "$lib/utils/style.js";
|
||
|
|
|
||
|
|
type $$Props = HTMLAttributes<HTMLParagraphElement>;
|
||
|
|
|
||
|
|
let className: $$Props["class"] = undefined;
|
||
|
|
export { className as class };
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<p class={cn("text-sm text-muted-foreground", className)} {...$$restProps}>
|
||
|
|
<slot />
|
||
|
|
</p>
|