frontAnswerer/lib/ui_kit/LoadingSkeleton.tsx
2024-05-31 19:41:18 +03:00

16 lines
269 B
TypeScript

import { Skeleton } from "@mui/material";
export default function LoadingSkeleton() {
return (
<Skeleton
component="div"
variant="rectangular"
sx={{
bgcolor: "grey",
width: "100%",
height: "100%",
}}
/>
);
}