@ssplib/react-components
Version:
SSP React Components
14 lines (13 loc) • 368 B
TypeScript
export default function FileUpload({ name, tipoArquivo, title, required, multiple, apiURL, route, sizeLimit, xs, sm, md, }: {
name: string;
tipoArquivo: string;
title: string;
apiURL: string;
route?: string;
required?: boolean;
multiple?: boolean;
sizeLimit?: number;
xs?: number;
sm?: number;
md?: number;
}): JSX.Element;