UNPKG

m3-svelte

Version:

M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.

9 lines (8 loc) 305 B
import type { HTMLInputAttributes } from "svelte/elements"; type $$ComponentProps = { checked?: boolean; disabled?: boolean; } & HTMLInputAttributes; declare const Switch: import("svelte").Component<$$ComponentProps, {}, "checked">; type Switch = ReturnType<typeof Switch>; export default Switch;