import { Box, Skeleton } from '@mui/material' import { styles } from './style' const widthPatterns = [85, 70, 55, 75, 60] export function CategorySkeleton() { return ( {Array.from({ length: 5 }).map((_, index) => ( ))} ) }