mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
17 lines
500 B
TypeScript
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>
|
|
}
|
|
/>
|
|
);
|