// Tremor Table [v0.0.3] import React from "react" import { cx } from "../../lib/utils" const TableRoot = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, children, ...props }, forwardedRef) => (
{children}
)) TableRoot.displayName = "TableRoot" const Table = React.forwardRef< HTMLTableElement, React.TableHTMLAttributes >(({ className, ...props }, forwardedRef) => ( )) Table.displayName = "Table" const TableHead = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, forwardedRef) => ( )) TableHead.displayName = "TableHead" const TableHeaderCell = React.forwardRef< HTMLTableCellElement, React.ThHTMLAttributes >(({ className, ...props }, forwardedRef) => ( )) TableBody.displayName = "TableBody" const TableRow = React.forwardRef< HTMLTableRowElement, React.HTMLAttributes >(({ className, ...props }, forwardedRef) => ( )) TableRow.displayName = "TableRow" const TableCell = React.forwardRef< HTMLTableCellElement, React.TdHTMLAttributes >(({ className, ...props }, forwardedRef) => ( ) }) TableFoot.displayName = "TableFoot" const TableCaption = React.forwardRef< HTMLTableCaptionElement, React.HTMLAttributes >(({ className, ...props }, forwardedRef) => (
)) TableHeaderCell.displayName = "TableHeaderCell" const TableBody = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, forwardedRef) => (
)) TableCell.displayName = "TableCell" const TableFoot = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, forwardedRef) => { return (
)) TableCaption.displayName = "TableCaption" export { Table, TableBody, TableCaption, TableCell, TableFoot, TableHead, TableHeaderCell, TableRoot, TableRow, }