mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Calling: Match buttons in other clients
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user