react-bootstrap-v5
Version:
Bootstrap 4 components built with React
9 lines (8 loc) • 347 B
TypeScript
import React from 'react';
import { AsProp, BsPrefixRefForwardingComponent } from './helpers';
export interface FormGroupProps extends React.HTMLAttributes<HTMLElement>, AsProp {
controlId?: string;
}
declare type FormGroup = BsPrefixRefForwardingComponent<'div', FormGroupProps>;
declare const FormGroup: FormGroup;
export default FormGroup;