import { HtmlTooltip } from 'component/common/HtmlTooltip/HtmlTooltip'; import { WarningAmber } from '@mui/icons-material'; import { styled } from '@mui/material'; const StyledWarningAmber = styled(WarningAmber)(({ theme }) => ({ color: theme.palette.warning.main, fontSize: theme.fontSizes.bodySize, })); const VariantsWarningTooltip = () => { return ( This environment has no variants enabled. If you check this feature's variants in this environment, you will get the{' '} disabled variant . } > ); }; export default VariantsWarningTooltip;