@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
15 lines (14 loc) • 472 B
TypeScript
import { ITableStandAlone, IValue } from '../types/table';
export interface ITableRow extends Omit<ITableStandAlone, 'values' | 'headerVariant'> {
hasSomeExpandedContent?: boolean;
initialExpanded: boolean;
value: IValue;
indexRow: number;
hasSomeDivider: boolean;
hasSomeDividerContent: boolean;
}
/**
* @description
* TableRow component is used to display a row in a table.
*/
export declare const TableRow: (props: ITableRow) => JSX.Element;