@atlaskit/checkbox
Version:
A checkbox is an input control that allows a user to select one or more options from a number of choices.
18 lines (17 loc) • 695 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ForwardRefExoticComponent, type MemoExoticComponent, type RefAttributes } from 'react';
import type { CheckboxProps } from './types';
/**
* __Checkbox__
*
* A checkbox an input control that allows a user to select one or more options from a number of choices.
*
* - [Examples](https://atlassian.design/components/checkbox/examples)
* - [Code](https://atlassian.design/components/checkbox/code)
* - [Usage](https://atlassian.design/components/checkbox/usage)
*/
declare const Checkbox: MemoExoticComponent<ForwardRefExoticComponent<React.PropsWithoutRef<CheckboxProps> & RefAttributes<HTMLInputElement>>>;
export default Checkbox;