2023-08-08 15:48:43 +02:00
|
|
|
import { Alert, styled } from '@mui/material';
|
|
|
|
import { FC } from 'react';
|
|
|
|
|
|
|
|
const StyledAlert = styled(Alert)(({ theme }) => ({
|
|
|
|
marginBottom: theme.spacing(2),
|
|
|
|
'& code': {
|
|
|
|
fontWeight: theme.fontWeight.bold,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
export const VariantInfoAlert: FC<{ mode: 'feature' | 'strategy' }> = ({
|
|
|
|
mode,
|
|
|
|
}) => {
|
|
|
|
return (
|
2023-10-02 14:25:46 +02:00
|
|
|
<StyledAlert severity='info'>
|
2023-08-08 15:48:43 +02:00
|
|
|
Variant allows you to return a variant object if the{' '}
|
|
|
|
{mode === 'feature'
|
|
|
|
? 'feature toggle is considered enabled '
|
|
|
|
: 'this strategy is active '}
|
|
|
|
for the current request. When using variants you should use the{' '}
|
|
|
|
<code>getVariant()</code> method in the Client SDK.
|
|
|
|
</StyledAlert>
|
|
|
|
);
|
|
|
|
};
|