import { InboxOutlined } from '@mui/icons-material' import { ComponentMeta, ComponentStory } from '@storybook/react' import { Row } from './Row' export default { title: 'DAO DAO / packages / stateless / components / layout / Row', component: Row, } as ComponentMeta const Template: ComponentStory = (args) => (
) export const Default = Template.bind({}) Default.args = { Icon: InboxOutlined, label: 'Inbox', onClick: undefined, children: ( <>

This is a child.

), } Default.parameters = { design: { type: 'figma', url: 'https://www.figma.com/file/ZnQ4SMv8UUgKDZsR5YjVGH/DAO-DAO-2.0?node-id=127%3A31185', }, }