UNPKG

dgz-ui

Version:

Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript

14 lines 606 B
import * as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; /** * Props for the Checkbox component. Extends Radix Checkbox Root props. */ export type CheckboxProps = React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>; /** * Checkbox - An accessible checkbox with indeterminate state support. * * @component */ declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>; export { Checkbox }; //# sourceMappingURL=checkbox.d.ts.map