import { Column, Grid, Heading, Icon, Row, Text } from '@umami/react-zen'; import type { ReactNode } from 'react'; export function PageHeader({ title, description, label, icon, showBorder = true, children, }: { title: string; description?: string; label?: ReactNode; icon?: ReactNode; showBorder?: boolean; allowEdit?: boolean; className?: string; children?: ReactNode; }) { return ( {label} {icon && ( {icon} )} {title && {title}} {description && ( {description} )} {children} ); }