♻️(frontend) rename VisioIcon to CameraIcon for clarity

Replace misleading component name that suggested brand-specific usage.
Generic camera icon is reusable across white-label versions.
This commit is contained in:
lebaudantoine
2025-06-26 11:54:39 +02:00
committed by aleb_the_flash
parent 2699edeaad
commit e356dcb4c3
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
export const VisioIcon = () => {
export const CameraIcon = () => {
return (
<svg
width="24"

View File

@@ -8,7 +8,7 @@ import { RiCloseLine, RiFileCopyLine } from '@remixicon/react'
import { Text } from '@/primitives'
import { Spinner } from '@/primitives/Spinner'
import { buttonRecipe } from '@/primitives/buttonRecipe'
import { VisioIcon } from '@/assets/VisioIcon'
import { CameraIcon } from '@/assets/CameraIcon'
import { getRouteUrl } from '@/navigation/getRouteUrl'
import { useRoomCreationCallback } from '../api/useRoomCreationCallback'
import { PopupManager } from '../utils/PopupManager'
@@ -117,7 +117,7 @@ export const CreateMeetingButton = () => {
textWrap: 'nowrap',
}}
>
<VisioIcon />
<CameraIcon />
{t('joinButton')}
</Link>
<HStack gap={0}>
@@ -174,7 +174,7 @@ export const CreateMeetingButton = () => {
}}
size="sm"
>
<VisioIcon />
<CameraIcon />
{t('createButton')}
</Button>
</div>