NOTE! v0.0.x - alpha. Not production ready. Still needs testing and improvements.
File dropzone component for React.
npm install @aiwizo/react-file-dropzone @aiwizo/application-styles styled-components
// Importing
import "@aiwizo/application-styles";
import { FileDropzone } from "@aiwizo/react-file-dropzone";
<FileUpload
onChange={({ event, files }) => {
/* Do something */
}}
/>;
Its possible to override the following default styles
<FileUpload
styles={
backgroundColorDragging,
backgroundColor,
border,
borderTopLeftRadius,
borderTopRightRadius,
borderBottomRightRadius,
borderBottomLeftRadius,
color,
colorDragging,
fontFamily,
fontSize,
fontWeight,
padding,
}
/>;
Make sure that the peer dependencies in package.json
are installed in your application.
Please let us know if you have any issues. Put an issue here on github and we'll do our best to solve it.