17 lines
390 B
TypeScript
17 lines
390 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
import { SwitchBaseProps, SwitchBaseClassKey } from '../internal/SwitchBase';
|
|
|
|
export interface CheckboxProps extends StandardProps<
|
|
SwitchBaseProps,
|
|
CheckboxClassKey
|
|
> {}
|
|
|
|
export type CheckboxClassKey =
|
|
| SwitchBaseClassKey
|
|
;
|
|
|
|
declare const Checkbox: React.ComponentType<CheckboxProps>;
|
|
|
|
export default Checkbox;
|