mirror of https://github.com/ghostfolio/ghostfolio
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.
32 lines
553 B
32 lines
553 B
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<GfLogoComponent>;
|
|
|
|
type Story = StoryObj<GfLogoComponent>;
|
|
|
|
export const Default: Story = {
|
|
args: {}
|
|
};
|
|
|
|
export const Large: Story = {
|
|
args: {
|
|
size: 'large'
|
|
}
|
|
};
|
|
|
|
export const WithoutLabel: Story = {
|
|
args: {
|
|
showLabel: false
|
|
}
|
|
};
|
|
|