UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

20 lines (15 loc) 397 B
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;