UNPKG

@heroui/table

Version:

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

8 lines (5 loc) 375 B
import { HTMLHeroUIProps } from '@heroui/system'; import { SpectrumColumnProps } from '@react-types/table'; type TableColumnProps<T> = Omit<SpectrumColumnProps<T>, "showDivider"> & Omit<HTMLHeroUIProps<"th">, keyof SpectrumColumnProps<T>>; declare const TableColumn: <T>(props: TableColumnProps<T>) => JSX.Element; export { type TableColumnProps, TableColumn as default };