mirror of
https://github.com/zyachel/libremdb.git
synced 2024-12-06 19:26:47 +01:00
7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
import styles from 'src/styles/modules/components/loaders/progress-bar.module.scss';
|
|
|
|
const ProgressBar = () => {
|
|
return <span className={styles.progress} role='progressbar'></span>;
|
|
};
|
|
export default ProgressBar;
|