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) 289 B
type $$ComponentProps = { clearable: boolean; chosenDate: boolean; clear: () => void; cancel: () => void; ok: () => void; }; declare const Actions: import("svelte").Component<$$ComponentProps, {}, "">; type Actions = ReturnType<typeof Actions>; export default Actions;