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) 271 B
type $$ComponentProps = { disabled: boolean; today: boolean; selected: boolean; label: string; onclick: () => void; }; declare const Item: import("svelte").Component<$$ComponentProps, {}, "">; type Item = ReturnType<typeof Item>; export default Item;