import { PropsWithChildren } from 'react'; import { IoAlertCircle } from 'react-icons/io5'; import { cx } from '../../utils/styleUtils'; import style from './Info.module.scss'; interface InfoProps { className?: string; } export default function Info(props: PropsWithChildren) { const { className, children } = props; return (
{children}
); }