import { Meta, StoryObj } from '@storybook/react' import LoadingState from '..' import { LoadingStateProps } from '../types' const meta: Meta = { title: '@baseapp-frontend | designSystem/Displays/LoadingState', component: LoadingState, } export default meta type Story = StoryObj export const Default: Story = { args: { CircularProgressProps: { size: 30, color: 'primary', }, }, render: (args) => , } export const CustomSizeAndColor: Story = { args: { CircularProgressProps: { size: 60, color: 'secondary', }, }, render: (args) => , }