Home / Function/ TableRow() — ui Function Reference

TableRow() — ui Function Reference

Architecture documentation for the TableRow() function in table.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  148094ec_769c_4bda_c5f8_89f4ad5005b5["TableRow()"]
  978704ef_f952_0ae2_36e5_75c928b8ea4a["table.tsx"]
  148094ec_769c_4bda_c5f8_89f4ad5005b5 -->|defined in| 978704ef_f952_0ae2_36e5_75c928b8ea4a
  style 148094ec_769c_4bda_c5f8_89f4ad5005b5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/new-york-v4/ui/table.tsx lines 55–66

function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
  return (
    <tr
      data-slot="table-row"
      className={cn(
        "hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors",
        className
      )}
      {...props}
    />
  )
}

Subdomains

Frequently Asked Questions

What does TableRow() do?
TableRow() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/ui/table.tsx.
Where is TableRow() defined?
TableRow() is defined in apps/v4/registry/new-york-v4/ui/table.tsx at line 55.

Analyze Your Own Codebase

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

Try Supermodel Free