1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-13 11:17:26 +02:00
unleash.unleash/frontend/src/component/project/Project/ProjectForm/FeatureTogglesLimitTooltip.tsx
2023-07-11 14:55:43 +03:00

17 lines
500 B
TypeScript

import { Box } from '@mui/material';
import { FC } from 'react';
import { HelpIcon } from 'component/common/HelpIcon/HelpIcon';
export const FeatureTogglesLimitTooltip: FC = () => (
<HelpIcon
htmlTooltip
tooltip={
<Box>
Enforce an upper limit of the number of feature toggles that may
be created for this project. You can create unlimited feature
toggle if there is no limit set.
</Box>
}
/>
);