NOCTA UI

Skeleton

Loading skeleton component with variants, shapes, and animations for creating content placeholders during loading states

Installation

Install the Skeleton component using the nocta-ui CLI:

npx nocta-ui add skeleton

Import the component:

import { Skeleton } from '@/components/ui/skeleton';

Examples

Default Skeleton

Shimmer Animation

Sizes

Three size options are available: sm, md, and lg. The default size is md.

Shapes

The Skeleton component supports different shapes: rectangle, circle, and text.

Text Lines

For text content placeholders, you can specify multiple lines with the lines prop.

Custom Dimensions

You can customize the width and height of skeleton elements using the width and height props.

Api Reference

PropTypeDefaultDescription
variant'default' | 'pulse' | 'wave''default'Animation variant
size'sm' | 'md' | 'lg''md'Predefined size
shape'rectangle' | 'circle' | 'text''rectangle'Shape of the skeleton
widthstring | numberCustom width
heightstring | numberCustom height
linesnumber1Number of text lines (only for text shape)
classNamestring''Additional CSS classes

The Skeleton component also accepts all standard HTML div attributes.