UNPKG

cyphertap

Version:

Nostr, Lightning and Ecash on a single Button component

12 lines (11 loc) 513 B
import { Dialog as DialogPrimitive } from "bits-ui"; import type { Snippet } from "svelte"; import { type WithoutChildrenOrChild } from "../../../utils.js"; type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.ContentProps> & { portalProps?: DialogPrimitive.PortalProps; children: Snippet; showCloseButton?: boolean; }; declare const DialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type DialogContent = ReturnType<typeof DialogContent>; export default DialogContent;