import React from 'react'; import { Button } from '../style'; type IProps = { fileInput: any; disabled?: boolean; state: any; maxUpload: number; label?: string; }; const Component = function({ fileInput, disabled, state, maxUpload, label }: IProps) { return ( ); }; export default Component;