You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
577 B

import { Meta, Story, moduleMetadata } from '@storybook/angular';
import { LogoComponent } from './logo.component';
export default {
title: 'Logo',
component: LogoComponent,
decorators: [
moduleMetadata({
imports: []
})
]
} as Meta<LogoComponent>;
const Template: Story<LogoComponent> = (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
};