import { ReactNode } from 'react'; import InfoBlock from './InfoBlock'; import AnimateItems from './AnimateItems'; import { IoInformationCircleOutline } from 'react-icons/io5'; export default function Banner({ icon, children, animate, className, }: { icon?: ReactNode children: ReactNode animate?: boolean className?: string }) { return (
{icon ?? } {children}
, ]} animateOnFirstLoadOnly /> ); }