From b5b238ffd35a3f76d4cfacc9c465844fe97f0a5a Mon Sep 17 00:00:00 2001 From: Valere Date: Thu, 4 Jun 2026 19:13:27 +0200 Subject: [PATCH] storybook: Add storybook for audio/video busy --- src/components/CallFooter.stories.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/components/CallFooter.stories.tsx b/src/components/CallFooter.stories.tsx index 2a25c20b..302f68ae 100644 --- a/src/components/CallFooter.stories.tsx +++ b/src/components/CallFooter.stories.tsx @@ -154,6 +154,28 @@ export const WithAudioAndVideoOptions: Story = { selectedVideo: "1", }, }; + +export const AudioBusy: Story = { + ...Default, + args: { + ...Default.args, + audioEnabled: true, + audioBusy: true, + videoEnabled: true, + videoBusy: false, + }, +}; + +export const VideoBusy: Story = { + ...Default, + args: { + ...Default.args, + audioEnabled: true, + audioBusy: false, + videoEnabled: true, + videoBusy: true, + }, +}; export const WithLogo: Story = { ...Default, args: {