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) • 461 B
TypeScript
import type { Snippet } from "svelte";
type $$ComponentProps = {
open?: boolean;
collapse?: "normal" | "full" | "no" | boolean;
modal?: boolean;
alignment?: "top" | "center";
iconType?: "left" | "full";
fab?: Snippet<[open: boolean]>;
children: Snippet;
};
declare const NavigationRail: import("svelte").Component<$$ComponentProps, {}, "open">;
type NavigationRail = ReturnType<typeof NavigationRail>;
export default NavigationRail;