import { Meta, StoryObj } from "@storybook/react" import React from "react" import { Separator, SeparatorProps } from "./index" type Story = StoryObj const meta: Meta = { title: "Design System/Separator", component: Separator, } export default meta const Template = (args: SeparatorProps) => { return (
) } export const Horizontal: Story = { render: Template, args: { orientation: "horizontal", }, } export const Vertical: Story = { render: Template, args: { orientation: "vertical", }, }