From 300200d4febf83c806a65c89bdba09110e60057c Mon Sep 17 00:00:00 2001 From: Robin Date: Sat, 11 Nov 2023 09:46:26 -0500 Subject: [PATCH] Use the correct video call icon variant This regression happened because of breaking changes in the most recent compound-design-tokens release. --- src/components/views/rooms/RoomHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/rooms/RoomHeader.tsx b/src/components/views/rooms/RoomHeader.tsx index 1e0bef8f2a4..04c3078a112 100644 --- a/src/components/views/rooms/RoomHeader.tsx +++ b/src/components/views/rooms/RoomHeader.tsx @@ -16,7 +16,7 @@ limitations under the License. import React, { useEffect, useMemo, useState } from "react"; import { Body as BodyText, IconButton, Tooltip } from "@vector-im/compound-web"; -import { Icon as VideoCallIcon } from "@vector-im/compound-design-tokens/icons/video-call.svg"; +import { Icon as VideoCallIcon } from "@vector-im/compound-design-tokens/icons/video-call-solid.svg"; import { Icon as VoiceCallIcon } from "@vector-im/compound-design-tokens/icons/voice-call.svg"; import { Icon as ThreadsIcon } from "@vector-im/compound-design-tokens/icons/threads-solid.svg"; import { Icon as NotificationsIcon } from "@vector-im/compound-design-tokens/icons/notifications-solid.svg";