import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { IconBadge } from './IconBadge' const meta: Meta = { title: 'IconBadge', component: IconBadge } export default meta type Story = StoryObj export const WithIcon: Story = { render: () => ( console.log('Clicked!')} /> ) } export const WithCustomIcon: Story = { render: () => (
Custom Icon Component
) } export const WithoutText: Story = { render: () => ( console.log('Clicked!')} /> ) } export const WithoutIcon: Story = { render: () => ( console.log('Clicked!')} /> ) }