import React from "react"; import { isEmpty } from "lodash"; import IconToolTip from "components/IconToolTip"; interface IIconTooltipCellProps { value: string; } const IconTooltipCell = ({ value, }: IIconTooltipCellProps): JSX.Element => { if (isEmpty(value)) { return <>; } return ; }; export default IconTooltipCell;