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.

11 lines (10 loc) 356 B
type $$ComponentProps = { currentView: "calendar" | "year" | "month"; focusedMonth: number; focusedYear: number; startYear: number; endYear: number; }; declare const Header: import("svelte").Component<$$ComponentProps, {}, "focusedMonth" | "focusedYear" | "currentView">; type Header = ReturnType<typeof Header>; export default Header;