UNPKG

dgz-ui

Version:

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

6 lines 430 B
import * as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; export type CheckboxProps = React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>; declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>; export { Checkbox }; //# sourceMappingURL=checkbox.d.ts.map