@heroui/table
Version:
Tables are used to display tabular data using rows and columns.
8 lines (5 loc) • 309 B
TypeScript
import { HTMLHeroUIProps } from '@heroui/system';
import { RowProps } from '@react-types/table';
type TableRowProps<T = object> = RowProps<T> & Omit<HTMLHeroUIProps<"tr">, keyof RowProps<T>>;
declare const TableRow: (props: TableRowProps) => JSX.Element;
export { type TableRowProps, TableRow as default };