feat(ui): use phosphor icons

There were some scattered places where we used other icon packs. Changed all to use phosphor icons for consistency.
This commit is contained in:
psychedelicious
2024-09-14 18:06:29 +10:00
parent e48ec1ce6d
commit 19201768b0
14 changed files with 29 additions and 29 deletions

View File

@@ -25,14 +25,14 @@ import { CanvasSettingsShowHUDSwitch } from 'features/controlLayers/components/S
import { CanvasSettingsShowProgressOnCanvas } from 'features/controlLayers/components/Settings/CanvasSettingsShowProgressOnCanvasSwitch';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { RiSettings4Fill } from 'react-icons/ri';
import { PiGearSixFill } from 'react-icons/pi';
export const CanvasSettingsPopover = memo(() => {
const { t } = useTranslation();
return (
<Popover isLazy>
<PopoverTrigger>
<IconButton aria-label={t('common.settingsLabel')} icon={<RiSettings4Fill />} variant="ghost" />
<IconButton aria-label={t('common.settingsLabel')} icon={<PiGearSixFill />} variant="ghost" />
</PopoverTrigger>
<PopoverContent>
<PopoverArrow />