* fix(sidebar): increase sidebar button hitbox * chore(ui): change hitbox area for plus button * chore(ui): update size of hitbox area * fix: fix pnpm version conflict * fix: pnpm version conflict * chore(ui): update size of hitbox area for the social links * feat: calendar footer story --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com> Co-authored-by: Samuel Gunter <29130894+Samathingamajig@users.noreply.github.com> Co-authored-by: Derek <derex1987@gmail.com>
20 lines
477 B
TypeScript
20 lines
477 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import CalendarFooter from '@views/components/calendar/CalendarFooter';
|
|
import React from 'react';
|
|
|
|
const meta = {
|
|
title: 'Components/Calendar/CalendarFooter',
|
|
component: CalendarFooter,
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof CalendarFooter>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {
|
|
args: {},
|
|
};
|