import { Box } from '@mui/material'; import { ReactNode } from 'react'; interface IIconCellProps { icon: ReactNode; } export const IconCell = ({ icon }: IIconCellProps) => { return ( {icon} ); };