🚸(frontend) replace effects icons in menu option

Align effects icon with the one from the newly refactored pre-join screen.
This new icon is stylish.
This commit is contained in:
lebaudantoine
2025-01-31 11:37:30 +01:00
committed by aleb_the_flash
parent 206e74c645
commit b48135c3b6

View File

@@ -1,4 +1,4 @@
import { RiAccountBoxLine } from '@remixicon/react'
import { RiImageCircleAiFill } from '@remixicon/react'
import { MenuItem } from 'react-aria-components'
import { useTranslation } from 'react-i18next'
import { menuRecipe } from '@/primitives/menuRecipe'
@@ -13,7 +13,7 @@ export const EffectsMenuItem = () => {
onAction={() => toggleEffects()}
className={menuRecipe({ icon: true, variant: 'dark' }).item}
>
<RiAccountBoxLine size={20} />
<RiImageCircleAiFill size={20} />
{t('effects')}
</MenuItem>
)