Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FormText.d.ts 313B

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