const bars = Array(8).fill(0); export const Loader = ({ visible }: { visible: boolean }) => { return (
{bars.map((_, i) => (
))}
); };