import Badge from '@/features/ui/components/bootstrap-5/badge' import Icon from '@/shared/components/icon' import type { Meta, StoryObj } from '@storybook/react' import classnames from 'classnames' const meta: Meta = { title: 'Shared / Components / Badge / Bootstrap 5', component: Badge, parameters: { bootstrap5: true, }, args: { children: 'Badge', }, argTypes: { bg: { options: ['light', 'info', 'primary', 'warning', 'danger'], control: { type: 'radio' }, }, prepend: { table: { disable: true, }, }, className: { table: { disable: true, }, }, closeBtnProps: { table: { disable: true, }, }, }, } export default meta type Story = StoryObj export const BadgeDefault: Story = { render: args => { return ( ) }, } BadgeDefault.args = { bg: meta.argTypes!.bg!.options[0], } export const BadgePrepend: Story = { render: args => { return ( } {...args} /> ) }, } BadgePrepend.args = { bg: meta.argTypes!.bg!.options[0], }