@themesberg/react-bootstrap
Version:
Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React
12 lines (11 loc) • 459 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
declare type FormCheckInputType = 'checkbox' | 'radio';
export interface FormCheckInputProps extends BsPrefixProps {
id?: string;
type?: FormCheckInputType;
isValid?: boolean;
isInvalid?: boolean;
}
declare type FormCheckInput = BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
declare const FormCheckInput: FormCheckInput;
export default FormCheckInput;