storybook: Add storybook for audio/video busy

This commit is contained in:
Valere
2026-06-04 19:13:27 +02:00
parent 4606373e5b
commit b5b238ffd3

View File

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