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