import * as React from 'react'; import { Box, Typography } from '@mui/material'; import { useTheme } from '@mui/material/styles'; import { Tooltip } from '@nymproject/react/tooltip/Tooltip'; export const CustomColumnHeading: FCWithChildren<{ headingTitle: string; tooltipInfo?: string }> = ({ headingTitle, tooltipInfo, }) => { const theme = useTheme(); return ( {tooltipInfo && ( )} {headingTitle} ); };