mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
26 lines
643 B
JavaScript
26 lines
643 B
JavaScript
import React from 'react';
|
|
import {
|
|
DISPLAY,
|
|
AlignItems,
|
|
Color,
|
|
JustifyContent,
|
|
} from '../../../../helpers/constants/design-system';
|
|
import Box from '../../../ui/box';
|
|
import { Icon, ICON_NAMES } from '../../../component-library';
|
|
|
|
const SignatureRequestSIWEIcon = () => {
|
|
return (
|
|
<Box
|
|
className="signature-request-siwe-icon"
|
|
display={DISPLAY.INLINE_FLEX}
|
|
alignItems={AlignItems.center}
|
|
backgroundColor={Color.errorDefault}
|
|
justifyContent={JustifyContent.center}
|
|
>
|
|
<Icon name={ICON_NAMES.DANGER} color={Color.errorInverse} />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default SignatureRequestSIWEIcon;
|