@atlaskit/checkbox
Version:
A checkbox is an input control that allows a user to select one or more options from a number of choices.
15 lines (14 loc) • 348 B
TypeScript
/// <reference types="react" />
/**
* __Checkbox icon__
*
* A checkbox icon is the visual representation of checkbox state,
* which is shown instead of the native input.
*
* @internal
*/
declare const CheckboxIcon: import("react").NamedExoticComponent<{
isIndeterminate: boolean;
isChecked: boolean;
}>;
export default CheckboxIcon;