mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-23 05:33:13 -04:00
13 lines
336 B
React
13 lines
336 B
React
import cx from '@src/cx.mjs';
|
|
|
|
function Loader({ active }) {
|
|
return (
|
|
<div className="overflow-hidden opacity-50 fixed top-0 left-0 w-full z-[1000]">
|
|
<div className={cx('h-[2px] block w-full', active ? 'bg-foreground animate-train' : 'bg-transparent')}>
|
|
<div />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
export default Loader;
|