UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

22 lines (21 loc) 748 B
/** * This module contains the Checkbox Icon component. * @module */ interface CheckboxIconProps { indeterminate?: boolean; } /** * Checkbox component * @definition [ARIA Target Size](https://www.w3.org/WAI/WCAG21/Understanding/target-size.html#:~:text=Understanding%20SC%202.5.,%3ATarget%20Size%20(Level%20AAA)&text=The%20size%20of%20the%20target,Equivalent) * @definition [ARIA Forms](https://www.a11yproject.com/checklist/#forms) * @see https://cerberus.digitalu.design/react/checkbox * @example * ```tsx * <Field> * <Checkbox id="legal" checked={checked.legal} onChange={handleChange} /> * </Field> * ``` */ export declare function CheckboxIcon(props: CheckboxIconProps): import("react/jsx-runtime").JSX.Element; export {};