LOCKING盒子版
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

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