import { FC } from 'react'; import styles from './notice.module.scss'; export type NoticeKind = 'error' | 'info' | 'success' | 'warning'; export type NoticeProps = { /** * The notice kind. */ kind: NoticeKind; /** * The notice body. */ message: string; }; /** * Notice component * * Render a colored message depending on notice kind. */ const Notice: FC = ({ kind, message }) => { const kindClass = `wrapper--${kind}`; return (
{message}
); }; export default Notice;