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