UNPKG

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.

12 lines (11 loc) 385 B
import type { Snippet } from "svelte"; import type { IconifyIcon } from "@iconify/types"; type $$ComponentProps = { icon?: IconifyIcon | "space" | undefined; disabled?: boolean; onclick: () => void; children: Snippet; }; declare const MenuItem: import("svelte").Component<$$ComponentProps, {}, "">; type MenuItem = ReturnType<typeof MenuItem>; export default MenuItem;