OutlineLinkItems() — ui Function Reference
Architecture documentation for the OutlineLinkItems() function in item-example.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 64192d9b_39bb_e0bf_6426_210cf5145965["OutlineLinkItems()"] d6dd3efc_dfed_4ee7_5f78_0ead2cb393df["item-example.tsx"] 64192d9b_39bb_e0bf_6426_210cf5145965 -->|defined in| d6dd3efc_dfed_4ee7_5f78_0ead2cb393df style 64192d9b_39bb_e0bf_6426_210cf5145965 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/radix/examples/item-example.tsx lines 1203–1277
function OutlineLinkItems() {
return (
<Example title="Outline - asChild">
<ItemGroup>
<Item variant="outline" asChild>
<a href="#">
<ItemContent>
<ItemTitle>Title Only (Link)</ItemTitle>
</ItemContent>
</a>
</Item>
<Item variant="outline" asChild>
<a href="#">
<ItemContent>
<ItemTitle>Title + Description (Link)</ItemTitle>
<ItemDescription>
Clickable item with title and description.
</ItemDescription>
</ItemContent>
</a>
</Item>
<Item variant="outline" asChild>
<a href="#">
<ItemMedia variant="icon">
<IconPlaceholder
lucide="InboxIcon"
tabler="IconArchive"
hugeicons="Archive02Icon"
phosphor="TrayIcon"
remixicon="RiInboxLine"
/>
</ItemMedia>
<ItemContent>
<ItemTitle>Media + Title (Link)</ItemTitle>
</ItemContent>
</a>
</Item>
<Item variant="outline" asChild>
<a href="#">
<ItemMedia variant="icon">
<IconPlaceholder
lucide="InboxIcon"
tabler="IconArchive"
hugeicons="Archive02Icon"
phosphor="TrayIcon"
remixicon="RiInboxLine"
/>
</ItemMedia>
<ItemContent>
<ItemTitle>Media + Title + Description (Link)</ItemTitle>
<ItemDescription>
Complete link item with media, title, and description.
</ItemDescription>
</ItemContent>
</a>
</Item>
<Item variant="outline" asChild>
<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>
</a>
</Item>
</ItemGroup>
</Example>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does OutlineLinkItems() do?
OutlineLinkItems() is a function in the ui codebase, defined in apps/v4/registry/bases/radix/examples/item-example.tsx.
Where is OutlineLinkItems() defined?
OutlineLinkItems() is defined in apps/v4/registry/bases/radix/examples/item-example.tsx at line 1203.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free