@procore/core-react
Version:
React library of Procore Design Guidelines
24 lines (18 loc) • 937 B
TypeScript
import React from 'react';
import type { CheckboxProps } from './Checkbox.types';
/**
We use checkboxes to provide users with the ability to either select or
deselect multiple values from a list of options (e.g. items on list pages),
or to select or deselect a single option (e.g. settings on configure pages).
@since 10.19.0
@see [Storybook](https://stories.core.procore.com/?path=/story/core-react_demos-checkbox--demo)
@see [Design Guidelines](https://design.procore.com/checkbox)
*/
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
/**
* This checkbox was created to be used as a non-interactive Checkbox component
* for VoiceOver inside MenuImperative.CheckboxItem.
*
* @since 11.3.0
*/
export declare const FakeCheckbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "tooltip" | "requiredMark"> & React.RefAttributes<HTMLDivElement>>;