UNPKG

react-data-grid

Version:

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

9 lines (8 loc) 350 B
/// <reference types="react" /> export interface ChildRowDeleteButtonProps { treeDepth: number; cellHeight: number; onDeleteSubRow(): void; isDeleteSubRowEnabled: boolean; } export default function ChildRowDeleteButton({ treeDepth, cellHeight, onDeleteSubRow, isDeleteSubRowEnabled }: ChildRowDeleteButtonProps): JSX.Element;