1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00
unleash.unleash/frontend/src/component/feature/FeatureView/FeatureVariants/VariantsTooltipWarning.tsx
2023-02-07 11:20:44 +01:00

35 lines
1.1 KiB
TypeScript

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 (
<HtmlTooltip
arrow
title={
<>
This environment has no variants enabled. If you check this
feature's variants in this environment, you will get the{' '}
<a
href="https://docs.getunleash.io/reference/feature-toggle-variants#the-disabled-variant"
target="_blank"
rel="noreferrer"
>
disabled variant
</a>
.
</>
}
>
<StyledWarningAmber />
</HtmlTooltip>
);
};
export default VariantsWarningTooltip;