import { Box, LinearProgress, Skeleton, Typography, TypographyProps, } from "@mui/material"; const variants = [ "h1", "h3", "body1", "body1", "h3", "caption" ] as readonly TypographyProps["variant"][]; const CommonSkeleton = () => { return ( <> {variants.map((variant, i) => ( ))} ) } export default CommonSkeleton;