mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import * as React from 'react';
|
|
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface FormGroupProps {
|
|
innerRef?: React.LegacyRef<this>;
|
|
controlId?: string;
|
|
}
|
|
|
|
declare class FormGroup<
|
|
As extends React.ElementType = 'div'
|
|
> extends BsPrefixComponent<As, FormGroupProps> {}
|
|
|
|
export default FormGroup;
|