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.

10 lines (9 loc) 332 B
type $$ComponentProps = { focusedMonth: number; focusedYear: number; dateValidator: (date: string) => boolean; chosenDate: string; }; declare const CalendarPicker: import("svelte").Component<$$ComponentProps, {}, "chosenDate">; type CalendarPicker = ReturnType<typeof CalendarPicker>; export default CalendarPicker;