import { Box, Skeleton } from '@mui/material' import { styles } from './style' export function HistogramSkeleton() { return ( spacing(0.5), height: ({ spacing }) => spacing(30), width: '100%', }} > {Array(8) .fill(0) .map((_, i) => { // Create varying heights for histogram bars const heights = [60, 80, 95, 85, 70, 55, 40, 30] const height = `${heights[i]}%` return ( ) })} spacing(1), }} > {Array(4) .fill(0) .map((_, i) => ( ))} ) }