MutedLinkItems() — ui Function Reference
Architecture documentation for the MutedLinkItems() function in item-example.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD f69dffa7_d393_dea0_7f7f_3a2ec14bd1e7["MutedLinkItems()"] c6f7f3f1_b32d_d1ac_3270_85fac0220e98["item-example.tsx"] f69dffa7_d393_dea0_7f7f_3a2ec14bd1e7 -->|defined in| c6f7f3f1_b32d_d1ac_3270_85fac0220e98 style f69dffa7_d393_dea0_7f7f_3a2ec14bd1e7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/examples/item-example.tsx lines 1307–1371
function MutedLinkItems() {
return (
<Example title="Muted - asChild">
<ItemGroup>
<Item variant="muted" render={<a href="#" />}>
<ItemContent>
<ItemTitle>Title Only (Link)</ItemTitle>
</ItemContent>
</Item>
<Item variant="muted" render={<a href="#" />}>
<ItemContent>
<ItemTitle>Title + Description (Link)</ItemTitle>
<ItemDescription>
Clickable item with title and description.
</ItemDescription>
</ItemContent>
</Item>
<Item variant="muted" render={<a href="#" />}>
<ItemMedia variant="icon">
<IconPlaceholder
lucide="InboxIcon"
tabler="IconArchive"
hugeicons="Archive02Icon"
phosphor="ArchiveIcon"
remixicon="RiArchiveLine"
/>
</ItemMedia>
<ItemContent>
<ItemTitle>Media + Title (Link)</ItemTitle>
</ItemContent>
</Item>
<Item variant="muted" render={<a href="#" />}>
<ItemMedia variant="icon">
<IconPlaceholder
lucide="InboxIcon"
tabler="IconArchive"
hugeicons="Archive02Icon"
phosphor="ArchiveIcon"
remixicon="RiArchiveLine"
/>
</ItemMedia>
<ItemContent>
<ItemTitle>Media + Title + Description (Link)</ItemTitle>
<ItemDescription>
Complete link item with media, title, and description.
</ItemDescription>
</ItemContent>
</Item>
<Item variant="muted" render={<a href="#" />}>
<ItemContent>
<ItemTitle>With Actions (Link)</ItemTitle>
<ItemDescription>
Link item that also has action buttons.
</ItemDescription>
</ItemContent>
<ItemActions>
<Button variant="outline" size="sm">
Share
</Button>
</ItemActions>
</Item>
</ItemGroup>
</Example>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does MutedLinkItems() do?
MutedLinkItems() is a function in the ui codebase, defined in apps/v4/registry/bases/base/examples/item-example.tsx.
Where is MutedLinkItems() defined?
MutedLinkItems() is defined in apps/v4/registry/bases/base/examples/item-example.tsx at line 1307.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free