Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
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" />
</>
)