Skip to content

Commit

Permalink
feat(ui): change upscaling icon
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Sep 16, 2024
1 parent 4bd7b25 commit a2976ff
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import StatusIndicator from 'features/system/components/StatusIndicator';
import { TabMountGate } from 'features/ui/components/TabMountGate';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { GiResize } from 'react-icons/gi';
import { PiBoundingBoxBold, PiCubeBold, PiFlowArrowBold, PiQueueBold } from 'react-icons/pi';
import { PiBoundingBoxBold, PiCubeBold, PiFlowArrowBold, PiFrameCornersBold, PiQueueBold } from 'react-icons/pi';

import { TabButton } from './TabButton';

Expand All @@ -24,7 +23,7 @@ export const VerticalNavBar = memo(() => {
<TabButton tab="canvas" icon={<PiBoundingBoxBold />} label={t('ui.tabs.canvas')} />
</TabMountGate>
<TabMountGate tab="upscaling">
<TabButton tab="upscaling" icon={<GiResize />} label={t('ui.tabs.upscaling')} />
<TabButton tab="upscaling" icon={<PiFrameCornersBold />} label={t('ui.tabs.upscaling')} />
</TabMountGate>
<TabMountGate tab="workflows">
<TabButton tab="workflows" icon={<PiFlowArrowBold />} label={t('ui.tabs.workflows')} />
Expand Down

0 comments on commit a2976ff

Please sign in to comment.