import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { LoadingButton } from './index' const meta: Meta = { title: 'atoms/LoadingButton', component: LoadingButton } export default meta type Story = StoryObj export const Default: Story = { args: { color: 'transparent' } }