UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

10 lines 417 B
import type * as React from 'react'; import { Checkbox as CheckboxPrimitive } from 'radix-ui'; /** * A control that allows the user to toggle between checked and not checked. * * https://ui.shadcn.com/docs/components/checkbox */ declare function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>): React.ReactElement; export { Checkbox }; //# sourceMappingURL=checkbox.d.ts.map