fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
8 lines (7 loc) • 344 B
TypeScript
import React from 'react';
import { CheckboxProps } from './type';
declare const Checkbox: {
({ as, name, label, radio, checked, slider, toggle, readOnly, disabled, fitted, right, className, ...props }: CheckboxProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
export default Checkbox;