LOCKING盒子版
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

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" />
  </>
)