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