index.js 245 B

123456789101112131415
  1. import createUpload from './component';
  2. const upload = createUpload({
  3. fileIcon: 'md-document',
  4. imgUpIcon: 'md-images',
  5. });
  6. upload.v2 = createUpload({
  7. fileIcon: 'document-text',
  8. imgUpIcon: 'image',
  9. });
  10. export default upload;