import { Separator } from "@ai-ui/ui"; import type { Meta, StoryObj } from "@storybook/react"; const meta = { title: "Components/Separator", component: Separator, args: { orientation: "horizontal", tone: "subtle" }, argTypes: { className: { control: false }, decorative: { control: "boolean" }, orientation: { control: "radio", options: ["horizontal", "vertical"] }, tone: { control: "radio", options: ["subtle", "strong"] } }, parameters: { layout: "centered" }, tags: ["autodocs"] } satisfies Meta; export default meta; type Story = StoryObj; export const Playground: Story = { render: (args) => (
) }; export const InCard: Story = { render: () => (

Workspace

Project status and recent activity

Tokens Stable
Components In progress
) }; export const Vertical: Story = { render: () => (
Overview Metrics Activity
) };