import type { Meta, StoryObj } from '@storybook/react'
import { BadgeStatus, CountBadge, DotLabel, FeatureTag, NotificationDot } from './Badge'
const meta: Meta = {
title: 'Components/Badge',
parameters: { layout: 'centered' },
}
export default meta
export const StatusBadges: StoryObj = {
render: () => (
활성
진행 중
대기
오류
비활성
),
}
export const DotLabels: StoryObj = {
render: () => (
텍스트 생성
이미지 처리
데이터 분석
),
}
export const CountBadges: StoryObj = {
render: () => (
),
}
export const Tags: StoryObj = {
render: () => (
GPT-4
텍스트
한국어
),
}
export const NotificationDots: StoryObj = {
render: () => (
notifications
notifications
),
}