UNPKG

nextjs-table

Version:

Modern, customizable data table component for Next.js with CRUD operations

8 lines 346 B
import React from 'react'; interface TableCellProps extends React.HTMLAttributes<HTMLTableCellElement> { children: React.ReactNode; colSpan?: number; } export declare function TableCell({ children, className, colSpan, ...props }: TableCellProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=TableCell.d.ts.map