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; export default meta; type Story = StoryObj; export const Mixed: Story = {};