import type { Meta, StoryObj } from "@storybook/react-vite";
import {
Button,
Chip,
Fieldset,
Flex,
Input,
Prose,
Validation,
} from "../react";
import styles from "../styles.module.css";
const meta = {
title: "Designsystem/Chip",
decorators: [
(Story) => (
),
],
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const React: Story = {
render: () => (
<>
Bokmål
>
),
};
export const Sizes: Story = {
render: () => (
),
};
export const Radio: Story = {
render: () => (
),
};
export const Checkbox: Story = {
render: () => (
),
};
export const Removable: Story = {
render: () => (
),
};
export const Nowrap: Story = {
render: () => (
Med nowrap:
Uten nowrap:
),
};
export const WithValidationForm: Story = {
parameters: {
showInOverview: true,
},
render: () => (
),
};