import type { ReactNode } from "react"; export function CalloutInfo({ title, children, }: { title?: string; children: ReactNode; }) { return (
{title && {title}} {children}
); }