max h for the voice line

This commit is contained in:
Arjun Patel
2022-01-22 12:31:29 -08:00
parent 2562afbd0e
commit 45dbb7c170
3 changed files with 19 additions and 22 deletions
+4 -6
View File
@@ -31,19 +31,17 @@ export function UserPulse(props: UserStatusPropsInterface) {
switch (props.status) {
case UserStatus.online:
return (
<IoPulseOutline className="text-green-500 text-2xl animate-pulse mx-2 ml-auto" />
<IoPulseOutline className="text-green-500 text-2xl animate-pulse mx-2" />
);
case UserStatus.busy:
return (
<IoPulseOutline className="text-orange-400 text-2xl animate-pulse mx-2 ml-auto" />
<IoPulseOutline className="text-orange-400 text-2xl animate-pulse mx-2" />
);
case UserStatus.offline:
return (
<IoRemoveOutline className="text-gray-400 text-2xl mx-2 ml-auto" />
);
return <IoRemoveOutline className="text-gray-400 text-2xl mx-2" />;
default:
return (
<IoPulseOutline className="text-gray-400 text-2xl animate-pulse mx-2 ml-auto" />
<IoPulseOutline className="text-gray-400 text-2xl animate-pulse mx-2" />
);
}
}