Files
24936d36-ee22-485a-9066-8d0…/research/base44/table.md
kudinDmitriyUp 0f06856ca5 Initial commit
2026-04-28 10:06:59 +00:00

2.2 KiB

import * as React from "react"

import { cn } from "@/lib/utils"

const Table = React.forwardRef(({ className, ...props }, ref) => (

)) Table.displayName = "Table"

const TableHeader = React.forwardRef(({ className, ...props }, ref) => (

)) TableHeader.displayName = "TableHeader"

const TableBody = React.forwardRef(({ className, ...props }, ref) => (

)) TableBody.displayName = "TableBody"

const TableFooter = React.forwardRef(({ className, ...props }, ref) => (

tr]:last:border-b-0", className)} {...props} /> )) TableFooter.displayName = "TableFooter"

const TableRow = React.forwardRef(({ className, ...props }, ref) => (

)) TableRow.displayName = "TableRow"

const TableHead = React.forwardRef(({ className, ...props }, ref) => (

[role=checkbox]]:translate-y-[2px]", className )} {...props} /> )) TableHead.displayName = "TableHead"

const TableCell = React.forwardRef(({ className, ...props }, ref) => (

[role=checkbox]]:translate-y-[2px]", className )} {...props} /> )) TableCell.displayName = "TableCell"

const TableCaption = React.forwardRef(({ className, ...props }, ref) => (

)) TableCaption.displayName = "TableCaption"

export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, }