From 5677042157ba83d43d1231adf3c3b190412b039b Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Tue, 22 Apr 2025 00:27:55 -0400 Subject: [PATCH] Place holder buttons --- src/app/pages/call/CallNavBottom.tsx | 44 ++++++++++++++++++---------- 1 file changed, 28 insertions(+), 16 deletions(-) diff --git a/src/app/pages/call/CallNavBottom.tsx b/src/app/pages/call/CallNavBottom.tsx index d4ff7a43..234649ea 100644 --- a/src/app/pages/call/CallNavBottom.tsx +++ b/src/app/pages/call/CallNavBottom.tsx @@ -1,7 +1,7 @@ import { logger } from 'matrix-js-sdk/lib/logger'; import { useMatrixClient } from '../../hooks/useMatrixClient'; import { useCallState } from '../client/CallProvider'; -import { Box, Text } from 'folds'; +import { Box, Icon, IconButton, Icons, Text } from 'folds'; export function CallNavBottom() { const { @@ -42,24 +42,36 @@ export function CallNavBottom() { ); } + //Muted:{(!isAudioEnabled).toString()} + //Videosn't:{(!isVideoEnabled).toString()} + /* + + + +*/ + return ( - - + + {/* Going to need better icons for this */} - - + + + + + + + + + - - - - {mx.getRoom(activeCallRoomId)?.normalizedName} + {mx.getRoom(activeCallRoomId)?.normalizedName} ); }