import { ReactNode } from 'react'; import { PiWarningBold } from 'react-icons/pi'; import Note from './Note'; export default function WarningNote({ className, children, }: { className?: string children: ReactNode }) { return ( } > {children} ); }