2022-10-04 23:33:51 +02:00
|
|
|
import React from 'react';
|
|
|
|
import {
|
2023-07-19 11:38:06 +02:00
|
|
|
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';
|
2023-07-19 11:38:06 +02:00
|
|
|
import { Icon, IconName, Box } from '../../../component-library';
|
2022-10-04 23:33:51 +02:00
|
|
|
|
|
|
|
const SignatureRequestSIWEIcon = () => {
|
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
className="signature-request-siwe-icon"
|
2023-07-19 11:38:06 +02:00
|
|
|
display={Display.InlineFlex}
|
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-04-19 23:16:49 +02:00
|
|
|
<Icon name={IconName.Danger} color={Color.errorInverse} />
|
2022-10-04 23:33:51 +02:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SignatureRequestSIWEIcon;
|