LOCKING盒子版
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

488 B

import React from 'react';
import FileStatus from '@/components/FileStatus';

export default () => (
  <>
    <FileStatus type="upload" loadingState="loading" progress={30} />
    <FileStatus type="upload" loadingState="complete" result="success" />
    <FileStatus type="upload" loadingState="complete" result="fail" />
    <FileStatus type="download" loadingState="complete" result="success" />
    <FileStatus type="download" loadingState="complete" result="fail" />
  </>
)