import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Badge } from "./Badge"; const meta: Meta = { component: Badge, title: "Primitives/Badge", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
Default Neutral Success Warning Error
), args: {}, };