Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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;