UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

7 lines (6 loc) 272 B
/// <reference types="react" /> import { CellActionButton } from '../common/types'; export interface CellActionProps extends CellActionButton { isFirst: boolean; } export default function CellAction({ icon, actions, callback, isFirst }: CellActionProps): JSX.Element;