import { EnvelopeIcon } from "@phosphor-icons/react"; import type { Meta, StoryObj } from "@storybook/react-vite"; import { Badge } from "../react"; import styles from "../styles.module.css"; const meta = { title: "Designsystem/Badge", decorators: [ (Story) => (
), ], } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => , }; export const React: Story = { render: () => ( <> ), }; export const Color: Story = { render: () => ( <> ), }; export const InElement: Story = { render: () => (

Under behandling

), }; export const WithPosition: Story = { render: () => ( <> ), }; export const Sizes: Story = { render: () => (
), };