import React from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { Badge, BadgeAnimated } from '~components/Badge' const meta = { title: 'Components/Badge', component: Badge, args: { children: '3', }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } // Adding story just for development testing/knowing it exists // Not particularly useful to show on docs cause the animation is too quick export const Animated: Story = { render: (props) => , }