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ů.
 
 
 
 

27 řádky
640 B

  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;