17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react-vite";
|
|
import { StatusStrip } from "../index";
|
|
import { mixedStatusStrip } from "./story-data";
|
|
|
|
const meta = {
|
|
title: "UI/StatusStrip",
|
|
component: StatusStrip,
|
|
args: {
|
|
id: "generic-status",
|
|
items: mixedStatusStrip,
|
|
},
|
|
} satisfies Meta<typeof StatusStrip>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Mixed: Story = {};
|