import { FC, ReactNode } from "react"; export const InfoBox: FC<{ children: ReactNode, className?: string }> = ({ children, className }) =>