Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
1234567891011121314151617181920212223242526
  1. import * as React from 'react';
  2. import FormFileInput from './FormFileInput';
  3. import FormFileLabel from './FormFileLabel';
  4. import { BsPrefixRefForwardingComponent } from './helpers';
  5. export interface FormFileProps {
  6. bsCustomPrefix?: string;
  7. id?: string;
  8. disabled?: boolean;
  9. label?: React.ReactNode;
  10. custom?: boolean;
  11. isValid?: boolean;
  12. isInvalid?: boolean;
  13. feedback?: React.ReactNode;
  14. lang?: string;
  15. }
  16. declare interface FormFile
  17. extends BsPrefixRefForwardingComponent<'input', FormFileProps> {
  18. Input: typeof FormFileInput;
  19. Label: typeof FormFileLabel;
  20. }
  21. declare const FormFile: FormFile;
  22. export default FormFile;