Skip to content

Commit

Permalink
fix(ui): icon for automask save as
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious authored and hipsterusername committed Oct 24, 2024
1 parent fec45f3 commit 66d9c7c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { selectAutoProcess } from 'features/controlLayers/store/canvasSettingsSl
import { useRegisteredHotkeys } from 'features/system/components/HotkeysModal/useHotkeyData';
import { memo, useCallback, useRef } from 'react';
import { useTranslation } from 'react-i18next';
import { PiArrowsCounterClockwiseBold, PiCheckBold, PiStarBold, PiXBold } from 'react-icons/pi';
import { PiArrowsCounterClockwiseBold, PiFloppyDiskBold, PiStarBold, PiXBold } from 'react-icons/pi';

const SegmentAnythingContent = memo(
({ adapter }: { adapter: CanvasEntityAdapterRasterLayer | CanvasEntityAdapterControlLayer }) => {
Expand Down Expand Up @@ -116,7 +116,7 @@ const SegmentAnythingContent = memo(
<Menu>
<MenuButton
as={Button}
leftIcon={<PiCheckBold />}
leftIcon={<PiFloppyDiskBold />}
isLoading={isProcessing}
loadingText={t('controlLayers.segment.saveAs')}
variant="ghost"
Expand Down

0 comments on commit 66d9c7c

Please sign in to comment.