UNPKG

@trail-ui/react

Version:
22 lines (19 loc) 702 B
import * as react_jsx_runtime from 'react/jsx-runtime'; type ObjectFitProps = 'contain' | 'cover' | 'fill' | 'none' | 'scale-down'; interface Column { id: string; name: string; accessor: string; type: 'id' | 'text' | 'date' | 'number' | 'status' | 'percentage' | 'usersList' | 'image' | 'link' | 'username'; width?: number; objectFit?: ObjectFitProps; linkTo: string; } declare function TanstackGroupTable({ columns, data, tableData, checkBoxSelectedName, tableName, }: { columns: Column[]; data: any[]; tableData?: number; checkBoxSelectedName?: string; tableName?: string; }): react_jsx_runtime.JSX.Element; export { TanstackGroupTable as default };