* fix: calendar weight change * feat: small color change * feat: stories for logo * feat: align the logo * feat: stupid imports * fix: eslint styling * Update CalenderHeader.tsx * Update colors.module.scss * chore: remove argTypes * chore: remove argTypes * chore: remove argTypes * fix: lock * chore: styled up logo stories --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com>
This commit is contained in:
18
src/stories/components/LogoIcon.stories.tsx
Normal file
18
src/stories/components/LogoIcon.stories.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import { LargeLogo, SmallLogo } from '@views/components/common/LogoIcon';
|
||||
import React from 'react';
|
||||
|
||||
const meta = {
|
||||
title: 'Components/Common/Logo',
|
||||
component: SmallLogo,
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof SmallLogo>;
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Small: Story = {};
|
||||
|
||||
export const Large: Story = {
|
||||
render: args => <LargeLogo {...args} />,
|
||||
};
|
||||
Reference in New Issue
Block a user