UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

15 lines (14 loc) 619 B
import { CheckboxRootProps } from '@ark-ui/react'; import { CheckboxVariantProps } from 'styled-system/recipes'; /** * This module contains the Checkbox component. * @module */ export type CheckboxProps = CheckboxVariantProps & CheckboxRootProps; /** * Checkbox component is an abstraction of the primitives that displays a * controlled checkbox with a label. * @description [Cerberus Docs](https://cerberus.digitalu.design/react/checkbox) * @description [Ark Docs](https://ark-ui.com/docs/components/checkbox) */ export declare function Checkbox(props: CheckboxProps): import("react/jsx-runtime").JSX.Element;