feature(icons): presentation_off, external-video, external-video_off icons

This commit is contained in:
Lucas Fialho Zawacki 2021-10-01 20:11:02 +00:00
parent 6155f51a1e
commit d530498b3b
3 changed files with 10 additions and 1 deletions

View File

@ -320,3 +320,12 @@
.icon-bbb-device_list_selector:before {
content: "\e95b";
}
.icon-bbb-presentation_off:before {
content: "\e958";
}
.icon-bbb-external-video:before {
content: "\e959";
}
.icon-bbb-external-video_off:before {
content: "\e95a";
}

View File

@ -44,7 +44,7 @@ const PresentationOptionsContainer = ({
let buttonType = 'presentation';
if (hasExternalVideo) {
// hack until we have an external-video icon
buttonType = 'presentation';
buttonType = 'external-video';
} else if (hasScreenshare) {
buttonType = 'desktop';
}