<a id="list"></a>

## List  
**Category**: Data Display
Vertical layout for structured data rows
### Examples

#### Basic List  
```python

```

#### Wrapping Column  
```python
Ul(
    Li('Most played songs this week', cls='p-4 pb-2 text-xs opacity-60 tracking-wide'),
    Li(
        Div(
            Img(src='https://img.daisyui.com/images/profile/demo/1@94.webp', cls='size-10 rounded-box')
        ),
        Div(
            Div('Dio Lupa'),
            Div('Remaining Reason', cls='text-xs uppercase font-semibold opacity-60')
        ),
        P('"Remaining Reason" became an instant hit, praised for its haunting sound and emotional depth. A viral performance brought it widespread recognition, making it one of Dio Lupa’s most iconic tracks.', cls='list-col-wrap text-xs'),
        Button(
            Icon.play(),
            cls='btn btn-square btn-ghost'
        ),
        Button(
            Icon.heart(),
            cls='btn btn-square btn-ghost'
        ),
        cls='list-row'
    ),
    Li(
        Div(
            Img(src='https://img.daisyui.com/images/profile/demo/4@94.webp', cls='size-10 rounded-box')
        ),
        Div(
            Div('Ellie Beilish'),
            Div('Bears of a fever', cls='text-xs uppercase font-semibold opacity-60')
        ),
        P('"Bears of a Fever" captivated audiences with its intense energy and mysterious lyrics. Its popularity skyrocketed after fans shared it widely online, earning Ellie critical acclaim.', cls='list-col-wrap text-xs'),
        Button(
            Icon.play(),
            cls='btn btn-square btn-ghost'
        ),
        Button(
            Icon.heart(),
            cls='btn btn-square btn-ghost'
        ),
        cls='list-row'
    ),
    Li(
        Div(
            Img(src='https://img.daisyui.com/images/profile/demo/3@94.webp', cls='size-10 rounded-box')
        ),
        Div(
            Div('Sabrino Gardener'),
            Div('Cappuccino', cls='text-xs uppercase font-semibold opacity-60')
        ),
        P('"Cappuccino" quickly gained attention for its smooth melody and relatable themes. The song’s success propelled Sabrino into the spotlight, solidifying their status as a rising star.', cls='list-col-wrap text-xs'),
        Button(
            Icon.play(),
            cls='btn btn-square btn-ghost'
        ),
        Button(
            Icon.heart(),
            cls='btn btn-square btn-ghost'
        ),
        cls='list-row'
    ),
    cls='list bg-base-100 rounded-box shadow-md'
)
```

