import { AppContent } from "./ui/app-content" import { Label } from "./ui/label" import { ReactNode } from "react" type PageHeaderProps = { title: ReactNode subtitle?: string actions?: ReactNode children?: ReactNode image?: ReactNode contentWidth?: number showDivider?: boolean size?: "small" | "large" } const PageHeader = ({ title, subtitle, actions, children, image, showDivider = true, size = "small", }: PageHeaderProps) => { return (
{subtitle && (

{subtitle}

)}
{actions}
{image}
{children && (
{showDivider &&
} {children}
)}
) } PageHeader.displayName = "PageHeader" export { PageHeader }