UNPKG

@arkhas/inertia-datatable

Version:

A Laravel Inertia React Datatable component

11 lines (10 loc) 462 B
import React from 'react'; interface ActionGroupColumnProps { columnKey: string; row: Record<string, React.ReactNode | string | number | boolean | null>; onRowAction: (action: string, rowId: number | string, url?: string, columnKey?: string) => void; t: (key: string) => string; icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>; } export declare const ActionGroupColumn: React.FC<ActionGroupColumnProps>; export {};