* 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>
19 lines
466 B
TypeScript
19 lines
466 B
TypeScript
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} />,
|
|
};
|