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