import React, {PropsWithChildren} from 'react' import styles from './Note.module.css' type NoteProps = { variant?: 'info' | 'warning' } & PropsWithChildren export function Note({children, variant = 'info'}: NoteProps) { return
{children}
}