UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

9 lines (8 loc) 320 B
import React from "react"; import { VibeComponent, VibeComponentProps } from "../../../types"; export interface ITableCellProps extends VibeComponentProps { children?: React.ReactNode; sticky?: boolean; } declare const TableCell: VibeComponent<ITableCellProps, HTMLDivElement>; export default TableCell;