UNPKG

@themesberg/react-bootstrap

Version:

Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React

9 lines (8 loc) 347 B
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;