diff --git a/src/components/General/ChevronIcon.stories.tsx b/src/components/General/ChevronIcon.stories.tsx new file mode 100644 index 00000000..a6dd3040 --- /dev/null +++ b/src/components/General/ChevronIcon.stories.tsx @@ -0,0 +1,27 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import ChevronIcon from './ChevronIcon' + +const meta = { + title: 'General/ChevronIcon', + component: ChevronIcon, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const NotOpened: Story = { + args: { + isOpen: false, + }, +} + +export const Opened: Story = { + args: { + isOpen: true, + }, +}