UNPKG

zeed-dynamic-table

Version:

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

13 lines (12 loc) 365 B
import React, { HTMLProps, ReactNode } from "react"; type TbodyProps = { tBodyProps?: HTMLProps<HTMLTableSectionElement>; children: ReactNode; }; /** * Tbody component wraps the HTML tbody element * Applies base styling and passes through custom props * Updated with dark mode support */ declare const Tbody: React.FC<TbodyProps>; export default Tbody;