UNPKG

@heroui/table

Version:

Tables are used to display tabular data using rows and columns.

8 lines (5 loc) 276 B
import { HTMLHeroUIProps } from '@heroui/system'; import { CellProps } from '@react-types/table'; type TableCellProps = CellProps & HTMLHeroUIProps<"td">; declare const TableCell: (props: TableCellProps) => JSX.Element; export { type TableCellProps, TableCell as default };