react-bootstrap
Version:
Bootstrap 4 components built with React
20 lines (15 loc) • 397 B
TypeScript
import * as React from 'react';
import { BsPrefixComponent } from './helpers';
export interface FormCheckInputProps {
id?: string;
type?: 'checkbox' | 'radio';
isStatic?: boolean;
isValid?: boolean;
isInvalid?: boolean;
innerRef?: React.LegacyRef<this>;
}
declare class FormCheckInput extends BsPrefixComponent<
'input',
FormCheckInputProps
> {}
export default FormCheckInput;