import { Meta, Story, moduleMetadata } from '@storybook/angular'; import { LogoComponent } from './logo.component'; export default { title: 'Logo', component: LogoComponent, decorators: [ moduleMetadata({ imports: [] }) ] } as Meta; const Template: Story = (args: LogoComponent) => ({ props: args }); export const Default = Template.bind({}); Default.args = {}; export const Large = Template.bind({}); Large.args = { size: 'large' }; export const NoLabel = Template.bind({}); NoLabel.args = { showLabel: false };