UNPKG

zeed-dynamic-table

Version:

A flexible and dynamic table component for React and Next.js applications without Tailwind dependencies

13 lines (12 loc) 379 B
import React, { HTMLProps, ReactNode } from "react"; type TableBaseProps = { children: ReactNode; tableBaseProps?: HTMLProps<HTMLDivElement>; }; /** * TableBase is the container component for the table itself * Provides scrolling behavior and dimensions * Updated with dark mode support */ declare const TableBase: React.FC<TableBaseProps>; export default TableBase;