UNPKG

m3-svelte

Version:

M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.

9 lines (8 loc) 302 B
import type { Snippet } from "svelte"; type $$ComponentProps = { variant: "compact" | "medium" | "large" | "expanded" | "auto"; children: Snippet; }; declare const NavCmlx: import("svelte").Component<$$ComponentProps, {}, "">; type NavCmlx = ReturnType<typeof NavCmlx>; export default NavCmlx;