import type { Meta, StoryObj } from "@storybook/react"; import { Badge, Icon } from "@managemate/react"; const meta = { title: "Data display/Badge", component: Badge, tags: ["autodocs"], } satisfies Meta; export default meta; type Story = StoryObj; export const Variants: Story = { render: () => (
Default Brand Success Warning Danger Info Solid
), }; export const WithDot: Story = { render: () => (
En ligne En attente Erreur
), }; export const WithIcon: Story = { render: () => (
Nouveau Actif
), };