feat: 💄 update lots of icons

This commit is contained in:
Josh Corbett
2024-01-17 21:08:38 -07:00
committed by psychedelicious
parent aa25ea62a5
commit 2967a78c5a
30 changed files with 81 additions and 83 deletions

View File

@ -3,7 +3,7 @@ import { useAppSelector } from 'app/store/storeHooks';
import { InvTooltip } from 'common/components/InvTooltip/InvTooltip';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { FaExclamationTriangle } from 'react-icons/fa';
import { PiWarningBold } from 'react-icons/pi';
const StatusIndicator = () => {
const isConnected = useAppSelector((s) => s.system.isConnected);
@ -17,7 +17,7 @@ const StatusIndicator = () => {
shouldWrapChildren
gutter={10}
>
<Icon as={FaExclamationTriangle} color="error.300" />
<Icon as={PiWarningBold} color="error.300" />
</InvTooltip>
);
}