Home / Function/ MutedLinkItems() — ui Function Reference

MutedLinkItems() — ui Function Reference

Architecture documentation for the MutedLinkItems() function in item-example.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  8c7b95b0_99fe_ed65_a5c5_69d0f62a0fcd["MutedLinkItems()"]
  d6dd3efc_dfed_4ee7_5f78_0ead2cb393df["item-example.tsx"]
  8c7b95b0_99fe_ed65_a5c5_69d0f62a0fcd -->|defined in| d6dd3efc_dfed_4ee7_5f78_0ead2cb393df
  style 8c7b95b0_99fe_ed65_a5c5_69d0f62a0fcd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/bases/radix/examples/item-example.tsx lines 1279–1353

function MutedLinkItems() {
  return (
    <Example title="Muted - asChild">
      <ItemGroup>
        <Item variant="muted" asChild>
          <a href="#">
            <ItemContent>
              <ItemTitle>Title Only (Link)</ItemTitle>
            </ItemContent>
          </a>
        </Item>
        <Item variant="muted" asChild>
          <a href="#">
            <ItemContent>
              <ItemTitle>Title + Description (Link)</ItemTitle>
              <ItemDescription>
                Clickable item with title and description.
              </ItemDescription>
            </ItemContent>
          </a>
        </Item>
        <Item variant="muted" 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="muted" 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="muted" 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>
  )
}

Subdomains

Frequently Asked Questions

What does MutedLinkItems() do?
MutedLinkItems() is a function in the ui codebase, defined in apps/v4/registry/bases/radix/examples/item-example.tsx.
Where is MutedLinkItems() defined?
MutedLinkItems() is defined in apps/v4/registry/bases/radix/examples/item-example.tsx at line 1279.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free