Home / File/ breadcrumb.tsx — ui Source File

breadcrumb.tsx — ui Source File

Architecture documentation for breadcrumb.tsx, a tsx file in the ui codebase. 5 imports, 0 dependents.

File tsx ComponentRegistry UIPrimitives 5 imports 7 functions

Entity Profile

Dependency Diagram

graph LR
  369ab10f_2a58_4f5b_5052_9817434cf362["breadcrumb.tsx"]
  1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"]
  369ab10f_2a58_4f5b_5052_9817434cf362 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2
  9c25e96d_58e7_da5f_38f2_06bde0124112["merge-props"]
  369ab10f_2a58_4f5b_5052_9817434cf362 --> 9c25e96d_58e7_da5f_38f2_06bde0124112
  54befa66_d51c_07e2_ec3f_848afbcd88a7["use-render"]
  369ab10f_2a58_4f5b_5052_9817434cf362 --> 54befa66_d51c_07e2_ec3f_848afbcd88a7
  8ad666ec_1b20_adda_0392_87a60bdb3a68["utils"]
  369ab10f_2a58_4f5b_5052_9817434cf362 --> 8ad666ec_1b20_adda_0392_87a60bdb3a68
  de6fac54_74ca_6c25_8f8b_d1ba3287dbf2["icon-placeholder"]
  369ab10f_2a58_4f5b_5052_9817434cf362 --> de6fac54_74ca_6c25_8f8b_d1ba3287dbf2
  style 369ab10f_2a58_4f5b_5052_9817434cf362 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import * as React from "react"
import { mergeProps } from "@base-ui/react/merge-props"
import { useRender } from "@base-ui/react/use-render"

import { cn } from "@/registry/bases/base/lib/utils"
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"

function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">) {
  return (
    <nav
      aria-label="breadcrumb"
      data-slot="breadcrumb"
      className={cn("cn-breadcrumb", className)}
      {...props}
    />
  )
}

function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">) {
  return (
    <ol
      data-slot="breadcrumb-list"
      className={cn(
        "cn-breadcrumb-list flex flex-wrap items-center wrap-break-word",
        className
      )}
      {...props}
    />
  )
}

function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">) {
  return (
    <li
      data-slot="breadcrumb-item"
      className={cn("cn-breadcrumb-item inline-flex items-center", className)}
      {...props}
    />
  )
}

function BreadcrumbLink({
  className,
  render,
  ...props
}: useRender.ComponentProps<"a">) {
  return useRender({
    defaultTagName: "a",
    props: mergeProps<"a">(
      {
        className: cn("cn-breadcrumb-link", className),
      },
      props
    ),
    render,
    state: {
      slot: "breadcrumb-link",
    },
  })
}
// ... (78 more lines)

Subdomains

Dependencies

  • icon-placeholder
  • merge-props
  • react
  • use-render
  • utils

Frequently Asked Questions

What does breadcrumb.tsx do?
breadcrumb.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, UIPrimitives subdomain.
What functions are defined in breadcrumb.tsx?
breadcrumb.tsx defines 7 function(s): Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator.
What does breadcrumb.tsx depend on?
breadcrumb.tsx imports 5 module(s): icon-placeholder, merge-props, react, use-render, utils.
Where is breadcrumb.tsx in the architecture?
breadcrumb.tsx is located at apps/v4/registry/bases/base/ui/breadcrumb.tsx (domain: ComponentRegistry, subdomain: UIPrimitives, directory: apps/v4/registry/bases/base/ui).

Analyze Your Own Codebase

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

Try Supermodel Free