import { moduleMetadata } from '@storybook/angular'; import type { Meta, StoryObj } from '@storybook/angular'; import { GfLogoComponent } from './logo.component'; export default { title: 'Logo', component: GfLogoComponent, decorators: [ moduleMetadata({ imports: [] }) ] } as Meta; type Story = StoryObj; export const Default: Story = { args: {} }; export const Large: Story = { args: { size: 'large' } }; export const WithoutLabel: Story = { args: { showLabel: false } };