import { Typography } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { useLegendContentStyles } from './Legend.styles'; interface Props { data: string; label: string; } const LegendContent = ({ data, label }: Props): JSX.Element => { const { classes, cx } = useLegendContentStyles(); const { t } = useTranslation(); return (