import { Meta, StoryObj } from "@storybook/react" import React from "react" import { Text } from "../Text" import { CenterAligned } from "./CenterAligned" type Story = StoryObj const meta: Meta = { title: "Design System/CenterAligned", component: CenterAligned, args: { asChild: true, children: (
Some content
), className: "h-[500px] w-[500px] border-border-1 border", }, } export default meta export const Default: Story = {}