zeed-dynamic-table
Version:
A flexible and dynamic table component for React and Next.js applications without Tailwind dependencies
12 lines (11 loc) • 331 B
TypeScript
import React, { HTMLProps, ReactNode } from "react";
type TheadTrProps = {
tHeadTrProps?: HTMLProps<HTMLTableRowElement>;
children: ReactNode;
};
/**
* TheadTr component wraps the HTML tr element within thead
* Applies styling for the header row
*/
declare const TheadTr: React.FC<TheadTrProps>;
export default TheadTr;