import { MRT_ToggleRowActionMenuButton } from '../../components/buttons/MRT_ToggleRowActionMenuButton'; import { type MRT_ColumnDef, type MRT_RowData, type MRT_StatefulTableOptions, } from '../../types'; import { defaultDisplayColumnProps } from '../../utils/displayColumn.utils'; export const getMRT_RowActionsColumnDef = ( tableOptions: MRT_StatefulTableOptions, ): MRT_ColumnDef => { return { Cell: ({ cell, row, staticRowIndex, table }) => ( ), ...defaultDisplayColumnProps({ header: 'actions', id: 'mrt-row-actions', size: 70, tableOptions, }), }; };