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