import { FC } from 'react' import SplitTestBadge from '@/shared/components/split-test-badge' import MaterialIcon from '@/shared/components/material-icon' import { useTranslation } from 'react-i18next' import OLTooltip from '@/features/ui/components/ol/ol-tooltip' export const PanelHeading: FC< React.PropsWithChildren<{ title: string splitTestName?: string children?: React.ReactNode handleClose(): void }> > = ({ title, splitTestName, children, handleClose }) => { const { t } = useTranslation() return (