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