Skip to content

Skeleton API

API reference docs for the React Skeleton component. Learn about the props, CSS, and other APIs of this exported module.

Demos

For examples and details on the usage of this React component, visit the component demo pages:

Import

import Skeleton from '@mui/joy/Skeleton';
// or
import { Skeleton } from '@mui/joy';
You can learn about the difference by reading this guide on minimizing bundle size.

Props

Props of the native component are also available.

NameTypeDefaultDescription
animation'pulse'
| 'wave'
| false
'pulse'
The animation. If false the animation effect is disabled.
childrennode
Used to render icon or text elements inside the Skeleton if src is not set. This can be an element, or just a string.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
heightArray<number
| string>
| number
| { lg?: number
| string, md?: number
| string, sm?: number
| string, xl?: number
| string, xs?: number
| string }
| string
Height of the skeleton. Useful when you don't want to adapt the skeleton to a text element but for instance a card.
level'body1'
| 'body2'
| 'body3'
| 'h1'
| 'h2'
| 'h3'
| 'h4'
| 'h5'
| 'h6'
| 'inherit'
| string
variant === 'text' ? 'body1' : 'inherit'
Applies the theme typography styles.
loadingbooltrue
If true, the skeleton appears.
overlayboolfalse
If true, the skeleton's position will change to absolute to fill the available space of the nearest parent. This prop is useful to create a placeholder that has the element's dimensions.
slotProps{ root?: func
| object }
{}
The props used for each slot inside.
slots{ root?: elementType }{}
The components used for each slot inside. See Slots API below for more details.
sxArray<func
| object
| bool>
| func
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
variant'circular'
| 'inline'
| 'overlay'
| 'rectangular'
| 'text'
| string
'overlay'
The type of content that will be rendered. To learn how to add your own variants, check out Themed components—Extend variants.
widthArray<number
| string>
| number
| { lg?: number
| string, md?: number
| string, sm?: number
| string, xl?: number
| string, xs?: number
| string }
| string
Width of the skeleton. Useful when the skeleton is inside an inline element with no width of its own.

The ref is forwarded to the root element.

Theme default props

You can use JoySkeleton to change the default props of this component with the theme.

Slots

To learn how to customize the slot, check out the Overriding component structure guide.

NameDefault classDefault HTML tagDescription
root.MuiSkeleton-root'span'The component that renders the root.

You can override the style of the component using one of these customization options:

CSS classes

These class names are useful for styling with CSS. They are applied to the root slot when specific states are triggered.

Global classDescription
.MuiSkeleton-body1Class name applied to the root element if level="body1".
.MuiSkeleton-body2Class name applied to the root element if level="body2".
.MuiSkeleton-body3Class name applied to the root element if level="body3".
.MuiSkeleton-h1Class name applied to the root element if level="h1".
.MuiSkeleton-h2Class name applied to the root element if level="h2".
.MuiSkeleton-h3Class name applied to the root element if level="h3".
.MuiSkeleton-h4Class name applied to the root element if level="h4".
.MuiSkeleton-h5Class name applied to the root element if level="h5".
.MuiSkeleton-h6Class name applied to the root element if level="h6".
.MuiSkeleton-variantCircularClass name applied to the root element if variant="circular".
.MuiSkeleton-variantInlineClass name applied to the root element if variant="inline".
.MuiSkeleton-variantOverlayClass name applied to the root element if variant="overlay".
.MuiSkeleton-variantRectangularClass name applied to the root element if variant="rectangular".
.MuiSkeleton-variantTextClass name applied to the root element if variant="text".