|
import type { Meta, StoryObj } from '@storybook/react'; |
|
import { Button, ButtonSize, ButtonTheme } from './Button'; |
|
import Location from '@/shared/assets/icons/location.svg?react'; |
|
import UserIcon from '@/shared/assets/icons/user.svg?react'; |
|
|
|
|
|
const meta = { |
|
title: 'Shared/Button', |
|
component: Button, |
|
parameters: { |
|
layout: 'centered', |
|
}, |
|
tags: ['autodocs'], |
|
|
|
|
|
|
|
|
|
} satisfies Meta<typeof Button>; |
|
|
|
export default meta; |
|
type Story = StoryObj<typeof meta>; |
|
|
|
export const Primary: Story = { |
|
args: { |
|
theme: ButtonTheme.PRIMARY, |
|
children: 'Нажми меня', |
|
size: ButtonSize.XL, |
|
}, |
|
}; |
|
|
|
export const PrimaryWithIcon: Story = { |
|
args: { |
|
theme: ButtonTheme.PRIMARY, |
|
children: 'Нажми меня', |
|
size: ButtonSize.XL, |
|
icon: <UserIcon />, |
|
}, |
|
}; |
|
|
|
export const Navigation: Story = { |
|
args: { |
|
theme: ButtonTheme.NAVIGATION, |
|
children: 'Нажми меня', |
|
}, |
|
}; |
|
|
|
export const NavigationIcon: Story = { |
|
args: { |
|
theme: ButtonTheme.NAVIGATION, |
|
children: 'Нажми меня', |
|
icon: <Location />, |
|
}, |
|
}; |
|
|