import React from 'react'; import { ComponentMeta, ComponentStory } from '@storybook/react'; import { BrbIcon, ChatIcon, EndStreamIcon, MicOnIcon, PipIcon, ShareScreenIcon, VideoOnIcon, } from '@100mslive/react-icons'; import { Button } from '../Button'; import { IconButton } from '../IconButton'; import { Footer } from '.'; export default { title: 'UI Components/Footer', component: Footer.Root, argTypes: { as: { table: { disable: true } }, css: { control: { type: 'object' } }, }, } as ComponentMeta; const Template: ComponentStory = ({ css }) => { return ( ); }; export const Example = Template.bind({}); Example.storyName = 'Footer';