mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
0bf6aeb5f5
* icon audit, remove xxs icon size * update icon file names and snapshots * remove unused icon- code and fix icons with slash issue * close icon fix * remove icons id * update snapshot * font awesome icon list * remove font awesome * fix linting issue
26 lines
657 B
JavaScript
26 lines
657 B
JavaScript
import React from 'react';
|
|
import {
|
|
DISPLAY,
|
|
ALIGN_ITEMS,
|
|
COLORS,
|
|
JUSTIFY_CONTENT,
|
|
} from '../../../../helpers/constants/design-system';
|
|
import Box from '../../../ui/box';
|
|
import { Icon, ICON_NAMES } from '../../../component-library/icon';
|
|
|
|
const SignatureRequestSIWEIcon = () => {
|
|
return (
|
|
<Box
|
|
className="signature-request-siwe-icon"
|
|
display={DISPLAY.INLINE_FLEX}
|
|
alignItems={ALIGN_ITEMS.CENTER}
|
|
backgroundColor={COLORS.ERROR_DEFAULT}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
>
|
|
<Icon name={ICON_NAMES.DANGER} color={COLORS.ERROR_INVERSE} />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default SignatureRequestSIWEIcon;
|