semantic-ui-react
Version:
The official Semantic-UI-React integration.
22 lines (14 loc) • 549 B
TypeScript
import * as React from 'react';
import { CheckboxProps } from '../../modules/Checkbox';
import { FormFieldProps } from './FormField';
export interface FormCheckboxProps extends FormFieldProps, CheckboxProps {
[key: string]: any;
/** An element type to render as (string or function). */
as?: any;
/** A FormField control prop. */
control?: any;
/** HTML input type, either checkbox or radio. */
type?: 'checkbox' | 'radio';
}
declare const FormCheckbox: React.StatelessComponent<FormCheckboxProps>;
export default FormCheckbox;