---
title: "Skeleton"
description: "Placeholder block that pulses while content loads."
section: "Libraries"
group: "UI components"
order: 518
---

## Usage

```tsx
import { Skeleton } from "@aeontel/ui";

<div className="flex flex-col gap-2">
  <Skeleton className="h-4 w-48" />
  <Skeleton className="h-4 w-32" />
</div>;
```

## Exports

### `Skeleton`

Pulsing placeholder block.

```ts
Skeleton(props: React.ComponentProps<"div">): JSX.Element
```
