Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 2.04 KB

ParticipantToggleVideoButton.md

File metadata and controls

23 lines (17 loc) · 2.04 KB

ParticipantToggleVideoButton

The ParticipantToggleVideoButton component is responsible for displaying remote participants' video streams to the local participant. The component adds buttons next to participant's names on the participants list.

Props

Name Type Default Description
participant Participant - The object of the selected participant.
size? "s" , "m" "m" The size of the button.
tooltipPosition? "top" , "bottom" "top" The position of the tooltip.
defaultIcon? IconsKeys "camera" The icon displayed on the button when a participant video is displayed.
activeIcon? IconsKeys "cameraOff" The icon displayed on the button when a participant's video is disabled and not displayed for the local participant.
disabledIcon? IconsKeys "cameraOff" The icon displayed on the button when the button is disabled.
...MediaButtonProps? Partial(MediaButtonProps) - Props that will be passed to the root of the button element.

Examples

React

return <ParticipantToggleVideoButton participant={participant} defaultTooltipText="Camera off" />;