UNPKG

313 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface FormTextProps {
6 innerRef?: React.LegacyRef<this>;
7 muted?: boolean;
8}
9
10declare class FormText<
11 As extends React.ElementType = 'small'
12> extends BsPrefixComponent<As, FormTextProps> {}
13
14export default FormText;