UNPKG

@zoop-svelte/svelte-components

Version:

Zoop UI component library built with Svelte 5, TypeScript, and Tailwind CSS

8 lines (7 loc) 282 B
import { Checkbox as CheckboxPrimitive } from "bits-ui"; interface Props extends CheckboxPrimitive.Props { indeterminate?: boolean; } declare const Checkbox: import("svelte").Component<Props, {}, "checked">; type Checkbox = ReturnType<typeof Checkbox>; export default Checkbox;