Calling: Match buttons in other clients

This commit is contained in:
Josh Perez 2020-10-14 12:30:50 -04:00 committed by Josh Perez
parent fe7008b6b1
commit 8446b2dc61
8 changed files with 113 additions and 23 deletions

View file

@ -54,6 +54,13 @@ story.add('Audio Off', () => {
return <CallingButton {...props} />;
});
story.add('Audio Disabled', () => {
const props = createProps({
buttonType: CallingButtonType.AUDIO_DISABLED,
});
return <CallingButton {...props} />;
});
story.add('Video On', () => {
const props = createProps({
buttonType: CallingButtonType.VIDEO_ON,
@ -68,6 +75,13 @@ story.add('Video Off', () => {
return <CallingButton {...props} />;
});
story.add('Video Disabled', () => {
const props = createProps({
buttonType: CallingButtonType.VIDEO_DISABLED,
});
return <CallingButton {...props} />;
});
story.add('Tooltip right', () => {
const props = createProps({
tooltipDirection: TooltipDirection.RIGHT,