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