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.
9 lines (8 loc) • 304 B
TypeScript
import type { Snippet } from "svelte";
import type { DivAttrs } from "../misc/typing-utils";
type $$ComponentProps = {
children: Snippet;
} & DivAttrs;
declare const Checkbox: import("svelte").Component<$$ComponentProps, {}, "">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;