mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
|
|
import Box from '../../ui/box/box';
|
|
import Typography from '../../ui/typography/typography';
|
|
import {
|
|
TypographyVariant,
|
|
Color,
|
|
BLOCK_SIZES,
|
|
DISPLAY,
|
|
AlignItems,
|
|
IconColor,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { BETA_BUGS_URL } from '../../../helpers/constants/beta';
|
|
|
|
import { hideBetaHeader } from '../../../store/actions';
|
|
import { ButtonIcon, ButtonIconSize, IconName } from '../../component-library';
|
|
|
|
const BetaHeader = () => {
|
|
const t = useI18nContext();
|
|
|
|
return (
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
width={BLOCK_SIZES.FULL}
|
|
backgroundColor={Color.warningDefault}
|
|
padding={2}
|
|
className="beta-header"
|
|
alignItems={AlignItems.center}
|
|
>
|
|
<Typography
|
|
variant={TypographyVariant.H7}
|
|
marginTop={0}
|
|
marginBottom={0}
|
|
className="beta-header__message"
|
|
color={Color.warningInverse}
|
|
>
|
|
{t('betaHeaderText', [
|
|
<a
|
|
href={BETA_BUGS_URL}
|
|
key="link"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
{t('here')}
|
|
</a>,
|
|
])}
|
|
</Typography>
|
|
<ButtonIcon
|
|
iconName={IconName.Close}
|
|
size={ButtonIconSize.Sm}
|
|
color={IconColor.warningInverse}
|
|
className="beta-header__button"
|
|
data-testid="beta-header-close"
|
|
onClick={() => {
|
|
hideBetaHeader();
|
|
}}
|
|
aria-label={t('close')}
|
|
/>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default BetaHeader;
|