import { ShrimpIcon } from "@phosphor-icons/react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { Tag } from "../react";
import styles from "../styles.module.css";
const meta = {
title: "Designsystem/Tag",
decorators: [
(Story) => (
),
],
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const Default: Story = {
render: () => (
<>
Neutral
Info
Success
Warning
Danger
>
),
};
export const React: Story = {
render: () => (
<>
Neutral
Info
Success
Warning
Danger
>
),
};
export const Sizes: Story = {
render: () => (
<>
Small
Medium
Large
>
),
};
export const WithIcon: Story = {
render: () => (
<>
Info
Success
Warning
Danger
>
),
};
export const WithIconOverwrite: Story = {
render: () => (
<>
Reke
Alle felter må fylles ut
>
),
};
export const WithTooltip: Story = {
render: () => (
<>
Bekreftet kopi
>
),
};