Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FormGroup.d.ts 317B

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface FormGroupProps {
  4. innerRef?: React.LegacyRef<this>;
  5. controlId?: string;
  6. }
  7. declare class FormGroup<
  8. As extends React.ElementType = 'div'
  9. > extends BsPrefixComponent<As, FormGroupProps> {}
  10. export default FormGroup;