mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-27 17:56:36 +00:00
18 lines
493 B
Svelte
18 lines
493 B
Svelte
<script lang="ts">
|
|
import * as FormPrimitive from "formsnap";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils/style.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>
|