UNPKG

@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

13 lines (12 loc) 681 B
import React from 'react'; import { ITable } from './types/table'; /** * @description * Table component is used to display data in a tabular format. * * @deprecated This component is deprecated. Please use our new DataTable component to display data in a table format. Alternatively, you can create a table manually using the new table-related components: TableV2, TableHead, TableBody, TableRow, TableCell, TableDivider, and TableCaption. This component will be removed in the next major release. */ declare const Table: <V extends string | unknown>(props: ITable<V> & { ref?: React.ForwardedRef<HTMLTableElement> | undefined | null; }) => JSX.Element; export { Table };