import { Box, Skeleton } from '@mui/material' import type { SxProps, Theme } from '@mui/material' const styles = { root: { display: 'flex', gap: 3, alignItems: 'baseline', minHeight: 64, py: 1, }, block: { width: 120, height: 36 }, } satisfies Record> export interface FormulaSkeletonProps { count?: number } export function FormulaSkeleton({ count = 1 }: FormulaSkeletonProps) { return ( {Array.from({ length: count }).map((_, i) => ( ))} ) }