@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) • 662 B
TypeScript
import React from 'react';
import { ITableStandAlone } from '../types/table';
interface ITableComponent extends Omit<ITableStandAlone, 'headerVariant'> {
initialExpanded: boolean;
hasSomeExpandedContent: boolean;
headerVariant: string;
}
export declare const TableComponent: ({ ariaHiddenDividerColumn, ariaHiddenEmptyColumn, ...props }: ITableComponent, ref: React.ForwardedRef<HTMLTableElement> | undefined | null) => JSX.Element;
/**
* @description
* Table component is used to display data in a tabular format.
*/
export declare const Table: React.ForwardRefExoticComponent<ITableComponent & React.RefAttributes<HTMLTableElement>>;
export {};