@helpwave/hightide
Version:
helpwave's component and theming library
10 lines (7 loc) • 316 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { PropsWithChildren } from 'react';
type TableCellProps = PropsWithChildren<{
className?: string;
}>;
declare const TableCell: ({ children, className, }: TableCellProps) => react_jsx_runtime.JSX.Element;
export { TableCell, type TableCellProps };