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';
Learn about the difference by reading this guide on minimizing bundle size.

Props

Props of the native component are also available.

animation

The animation. If false the animation effect is disabled.

Type:

'pulse' | 'wave' | false

Default:

'pulse'

children

Used to render icon or text elements inside the Skeleton if src is not set. This can be an element, or just a string.

Type:

node

component

The component used for the root node. Either a string to use a HTML element or a component.

Type:

elementType

height

Height of the skeleton. Useful when you don't want to adapt the skeleton to a text element but for instance a card.

Type:

Array<number | string> | number | { lg?: number | string, md?: number | string, sm?: number | string, xl?: number | string, xs?: number | string } | string

level

Applies the theme typography styles.

Type:

'h1' | 'h2' | 'h3' | 'h4' | 'title-lg' | 'title-md' | 'title-sm' | 'body-lg' | 'body-md' | 'body-sm' | 'body-xs' | 'inherit' | string

Default:

variant === 'text' ? 'body-md' : 'inherit'

loading

If true, the skeleton appears.

Type:

bool

Default:

true

overlay

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.

Type:

bool

Default:

false

slotProps

The props used for each slot inside.

Type:

{ root?: func | object }

Default:

{}

slots

The components used for each slot inside.

See Slots API below for more details.

Type:

{ root?: elementType }

Default:

{}

sx

The system prop that allows defining system overrides as well as additional CSS styles.

See the `sx` page for more details.

Type:

Array<func | object | bool> | func | object

variant

The type of content that will be rendered.

To learn how to add your own variants, check out Themed components—Extend variants.

Type:

'circular' | 'inline' | 'overlay' | 'rectangular' | 'text' | string

Default:

'overlay'

width

Width of the skeleton. Useful when the skeleton is inside an inline element with no width of its own.

Type:

Array<number | string> | number | { lg?: number | string, md?: number | string, sm?: number | string, xl?: number | string, xs?: number | string } | string

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.

root

The component that renders the root.

Default: 'span'

Global class: .MuiSkeleton-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.

.MuiSkeleton-body-lg

Class name applied to the root element if level="body-lg".


.MuiSkeleton-body-md

Class name applied to the root element if level="body-md".


.MuiSkeleton-body-sm

Class name applied to the root element if level="body-sm".


.MuiSkeleton-body-xs

Class name applied to the root element if level="body-xs".


.MuiSkeleton-h1

Class name applied to the root element if level="h1".


.MuiSkeleton-h2

Class name applied to the root element if level="h2".


.MuiSkeleton-h3

Class name applied to the root element if level="h3".


.MuiSkeleton-h4

Class name applied to the root element if level="h4".


.MuiSkeleton-title-lg

Class name applied to the root element if level="title-lg".


.MuiSkeleton-title-md

Class name applied to the root element if level="title-md".


.MuiSkeleton-title-sm

Class name applied to the root element if level="title-sm".


.MuiSkeleton-variantCircular

Class name applied to the root element if variant="circular".


.MuiSkeleton-variantInline

Class name applied to the root element if variant="inline".


.MuiSkeleton-variantOverlay

Class name applied to the root element if variant="overlay".


.MuiSkeleton-variantRectangular

Class name applied to the root element if variant="rectangular".


.MuiSkeleton-variantText

Class name applied to the root element if variant="text".