import { Box, Grid, Skeleton, styled } from "@mui/material"; import { Typography } from "../Atoms/Typography"; type VoteSectionLoaderProps = { title?: string; }; const ProgressContainer = styled(Box)({ position: "relative", width: "100%", height: 32, borderRadius: 20, overflow: "hidden", }); export const VoteSectionLoader = ({ title = "Loading...", }: VoteSectionLoaderProps) => { return ( {title} ); };