2023-03-24 12:41:00 +01:00

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;