UNPKG

@heroui/table

Version:

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

8 lines (5 loc) 374 B
import { HTMLHeroUIProps } from '@heroui/system'; import { TableHeaderProps as TableHeaderProps$1 } from '@react-types/table'; type TableHeaderProps<T> = TableHeaderProps$1<T> & Omit<HTMLHeroUIProps<"thead">, keyof TableHeaderProps$1<T>>; declare const TableHeader: <T>(props: TableHeaderProps<T>) => JSX.Element; export { type TableHeaderProps, TableHeader as default };