import {InformationCircleIcon} from '@heroicons/react/24/solid' import clsx from 'clsx' import {ReactNode} from 'react' import {Linkify} from './linkify' export function InfoBox(props: { title: string text?: string children?: ReactNode className?: string }) { const {title, text, className} = props return (
{title &&

{title}

}
{text && } {props.children}
) }