mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 06:08:34 +00:00
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
import { cx } from '@strudel.cycles/react';
|
|
import React from 'react';
|
|
|
|
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;
|