import classNames from 'classnames' import type { PropsWithChildren } from 'react' import { Alert, type AlertProps } from 'lib/ui/Alert/Alert.js' interface AlertsProps extends PropsWithChildren { alerts?: AlertProps[] className?: string } export function Alerts(props: AlertsProps): JSX.Element | null { const { alerts, children, className } = props if (alerts?.length === 0) return null return (