Item
A flexible composable component for displaying structured content such as list rows, settings entries, or media-rich cards.
Dashboard
Overview of your account and activity.
Notifications
Manage your notification preferences.
3
Settings
Configure your workspace settings.
Usage
import {
Item,
ItemActions,
ItemContent,
ItemDescription,
ItemMedia,
ItemTitle,
} from "@/components/ui/item"<Item>
<ItemMedia variant="icon">
<HomeIcon />
</ItemMedia>
<ItemContent>
<ItemTitle>Dashboard</ItemTitle>
<ItemDescription>Overview of your account and activity.</ItemDescription>
</ItemContent>
</Item>Examples
With avatar
SC
shadcn
JD
Jane Doe
As a link
<Item asChild>
<a href="/dashboard">
<ItemMedia variant="icon">
<HomeIcon />
</ItemMedia>
<ItemContent>
<ItemTitle>Dashboard</ItemTitle>
<ItemDescription>Overview of your account.</ItemDescription>
</ItemContent>
</a>
</Item>Last updated on