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: {