m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://kendell.dev/m3-svelte/) for demos and usage instructions.
14 lines (13 loc) • 469 B
TypeScript
import type { IconifyIcon } from "@iconify/types";
import type { HTMLDialogAttributes } from "svelte/elements";
import type { Snippet } from "svelte";
type $$ComponentProps = {
icon?: IconifyIcon | undefined;
headline: string;
buttons: Snippet;
children: Snippet;
open: boolean;
} & HTMLDialogAttributes;
declare const Dialog: import("svelte").Component<$$ComponentProps, {}, "open">;
type Dialog = ReturnType<typeof Dialog>;
export default Dialog;