import {ExclamationTriangleIcon} from '@heroicons/react/24/solid' import clsx from 'clsx' import {ReactNode} from 'react' import {Col} from '../layout/col' import {Row} from '../layout/row' export function AlertBox(props: {title: string; className?: string; children?: ReactNode}) { const {title, children, className} = props return (