UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

13 lines 351 B
// src/components/table/TableCell.tsx import { clsx } from "clsx"; import { jsx } from "react/jsx-runtime"; var TableCell = ({ children, className }) => { return /* @__PURE__ */ jsx("span", { className: clsx("block max-w-full overflow-ellipsis truncate", className), children }); }; export { TableCell }; //# sourceMappingURL=TableCell.mjs.map