UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

10 lines 497 B
import { PropsWithChildren } from 'react'; import { IdType, Row } from 'react-table'; declare type TableRowProps<T extends Record<string, unknown>> = PropsWithChildren<PropsWithClass<{ expanded?: boolean; rowData?: Row<T>; expandedRows?: Array<IdType<T>>; }>>; export declare const TableRow: <T extends Record<string, unknown>>({ children, className, expanded, rowData, expandedRows, ...otherProps }: TableRowProps<T>) => JSX.Element; export {}; //# sourceMappingURL=table-row.d.ts.map