mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 09:51:46 +00:00
17 lines
428 B
Svelte
17 lines
428 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
type $$Props = AlertDialogPrimitive.DescriptionProps;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Description
|
|
class={cn("text-muted-foreground text-sm", className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</AlertDialogPrimitive.Description>
|