ConstAll valid Material-UI Skeleton props
The Skeleton component
// Basic usage
<Skeleton />
// Text skeleton with specific dimensions
<Skeleton
variant="text"
width={200}
height={20}
/>
// Circular skeleton
<Skeleton
variant="circular"
width={40}
height={40}
/>
// Rectangular skeleton with animation
<Skeleton
variant="rectangular"
width="100%"
height={118}
animation="wave"
/>
Create a customized Material UI Skeleton component.