zeed-dynamic-table
Version:
A flexible and dynamic table component for React and Next.js applications without Tailwind dependencies
13 lines (12 loc) • 354 B
TypeScript
import React, { HTMLProps, ReactNode } from "react";
type TheadProps = {
tHeadProps?: HTMLProps<HTMLTableSectionElement>;
children: ReactNode;
};
/**
* Thead component wraps the HTML thead element
* Applies base styling for the table header
* Updated with dark mode support
*/
declare const Thead: React.FC<TheadProps>;
export default Thead;