import { ReactNode } from 'react'; import { Heading, Icon, Row, Text, RowProps } from '@umami/react-zen'; 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} ); }