import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import Icon from 'semantic-ui-react/dist/commonjs/elements/Icon/Icon' import { Button } from './Button' import './Button.stories.css' import { Row } from '../Row/Row' const meta: Meta = { title: 'Button', component: Button } export default meta type Story = StoryObj export const Primary: Story = { render: () => ( ) } export const Secondary: Story = { render: () => ( ) } export const Basic: Story = { render: () => ( ) } export const Inverted: Story = { render: () => ( ) } export const Link: Story = { render: () => ( <> ) } export const IconStory: Story = { render: () => ( <> ) } export const Sizes: Story = { render: () => ( <> ) } export const Actions: Story = { render: () => ( ) }