diff --git a/dailyjs/shared/components/WaitingRoom/WaitingRoomNotification.js b/dailyjs/shared/components/WaitingRoom/WaitingRoomNotification.js
index aeb9df3..dbee7fb 100644
--- a/dailyjs/shared/components/WaitingRoom/WaitingRoomNotification.js
+++ b/dailyjs/shared/components/WaitingRoom/WaitingRoomNotification.js
@@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
import { useCallState } from '../../contexts/CallProvider';
import { useWaitingRoom } from '../../contexts/WaitingRoomProvider';
+import { ReactComponent as IconWaiting } from '../../icons/add-person-lg.svg';
import { Button } from '../Button';
import { Card, CardBody, CardFooter } from '../Card';
@@ -58,40 +59,70 @@ export const WaitingRoomNotification = () => {
const handleDenyClick = () => {
denyAccess(hasMultiplePeopleWaiting ? 'all' : waitingParticipants[0].id);
};
- // const handleClose = () => setShowNotification(false);
return (
+
+
+ {hasMultiplePeopleWaiting
+ ? waitingParticipants.length
+ : waitingParticipants[0].name}
+
{hasMultiplePeopleWaiting
- ? `${waitingParticipants.length} people would like to join the call`
- : `${waitingParticipants[0].name} would like to join the call`}
+ ? ` people would like to join the call`
+ : ` would like to join the call`}
+
+ {hasMultiplePeopleWaiting ? (
+
+ ) : (
+
+ )}
+
+
-
- {hasMultiplePeopleWaiting ? (
-
- ) : (
-
- )}
-
-
diff --git a/dailyjs/shared/icons/add-person-lg.svg b/dailyjs/shared/icons/add-person-lg.svg
new file mode 100644
index 0000000..fbae5e4
--- /dev/null
+++ b/dailyjs/shared/icons/add-person-lg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file