fleet/frontend/components/TableContainer/DataTable/IconTooltipCell/IconTooltipCell.tsx
2022-03-10 10:10:44 -05:00

21 lines
390 B
TypeScript

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