2022-10-04 23:33:51 +02:00
|
|
|
import React from 'react';
|
|
|
|
import {
|
|
|
|
DISPLAY,
|
2023-02-02 21:15:26 +01:00
|
|
|
AlignItems,
|
|
|
|
Color,
|
|
|
|
JustifyContent,
|
2022-10-04 23:33:51 +02:00
|
|
|
} from '../../../../helpers/constants/design-system';
|
|
|
|
import Box from '../../../ui/box';
|
2023-02-02 21:15:26 +01:00
|
|
|
import { Icon, ICON_NAMES } from '../../../component-library';
|
2022-10-04 23:33:51 +02:00
|
|
|
|
|
|
|
const SignatureRequestSIWEIcon = () => {
|
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
className="signature-request-siwe-icon"
|
|
|
|
display={DISPLAY.INLINE_FLEX}
|
2023-02-02 21:15:26 +01:00
|
|
|
alignItems={AlignItems.center}
|
|
|
|
backgroundColor={Color.errorDefault}
|
|
|
|
justifyContent={JustifyContent.center}
|
2022-10-04 23:33:51 +02:00
|
|
|
>
|
2023-02-02 21:15:26 +01:00
|
|
|
<Icon name={ICON_NAMES.DANGER} color={Color.errorInverse} />
|
2022-10-04 23:33:51 +02:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SignatureRequestSIWEIcon;
|