import React, { useState } from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { Icon } from '~components/Icon' import { LoadingInput } from '~components/Loading' import { TextField } from '~components/TextField' import { Button } from '../index' const meta = { title: 'Components/Button/Button (deprecated)', component: Button, args: { label: 'Label', }, tags: ['!dev'], } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } export const Variants: Story = { render: ({ reversed }) => ( <>