import type { Meta, StoryObj } from "@storybook/react-vite"; import { Plus, Download } from "lucide-react"; import { PageHeader } from "./page-header"; import { Button } from "@/components/ui/button"; const meta = { title: "UI Library/PageHeader", component: PageHeader, tags: ["autodocs"], parameters: { layout: "padded" }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { eyebrow: "Workspace", title: "Projects", description: "Manage and organize all of your team's projects.", }, render: (args) => (
} />
), }; export const TitleOnly: Story = { args: { title: "Settings" }, render: (args) => (
), };