Calling: Match buttons in other clients
This commit is contained in:
parent
fe7008b6b1
commit
8446b2dc61
8 changed files with 113 additions and 23 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue