<a id="skeleton"></a>

## Skeleton  
**Category**: Feedback
Loading placeholders for content while it's being loaded
### Examples

#### Basic Skeleton  
```python
Div(cls='skeleton h-32 w-32')
```

#### Circle with Content  
```python
Div(
    Div(
        Div(cls="skeleton h-16 w-16 shrink-0 rounded-full"),
        Div(
            Div(cls="skeleton h-4 w-20"),
            Div(cls="skeleton h-4 w-28"),
            cls="flex flex-col gap-4"
        ),
        cls="flex items-center gap-4"
    ),
    Div(cls="skeleton h-32 w-full"),
    cls="flex w-52 flex-col gap-4"
)
```

#### Rectangle with Content  
```python
Div(
    Div(cls='skeleton h-32 w-full'),
    Div(cls='skeleton h-4 w-28'),
    Div(cls='skeleton h-4 w-full'),
    Div(cls='skeleton h-4 w-full'),
    cls='flex w-52 flex-col gap-4'
)
```

