import { AddBox, ArrowDownward, Check, ChevronLeft, ChevronRight, Clear, DeleteOutline, Edit, FilterList, FirstPage, LastPage, Remove, SaveAlt, Search, ViewColumn, } from '@material-ui/icons'; import { Icons } from 'material-table'; import React, { forwardRef } from 'react'; const tableIcons: Icons = { Add: forwardRef((props, ref) => ( )), Check: forwardRef((props, ref) => ( )), Clear: forwardRef((props, ref) => ( )), Delete: forwardRef((props, ref) => ( )), DetailPanel: forwardRef((props, ref) => ( )), Edit: forwardRef((props, ref) => ( )), Export: forwardRef((props, ref) => ( )), Filter: forwardRef((props, ref) => ( )), FirstPage: forwardRef((props, ref) => ( )), LastPage: forwardRef((props, ref) => ( )), NextPage: forwardRef((props, ref) => ( )), PreviousPage: forwardRef((props, ref) => ( )), ResetSearch: forwardRef((props, ref) => ( )), Search: forwardRef((props, ref) => ( )), SortArrow: forwardRef((props, ref) => ( )), ThirdStateCheck: forwardRef((props, ref) => ( )), ViewColumn: forwardRef((props, ref) => ( )), }; export default tableIcons;