import { ReactNode } from 'react'; import classes from './Info.module.css'; type InfoProps = { message: string; color?: string; children?: ReactNode; }; export default function Info(props: InfoProps) { return (