blob: b6e09c594803f1050c1c277fd090743c8328583b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { VFC } 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: VFC<NoticeProps> = ({ kind, message }) => {
const kindClass = `wrapper--${kind}`;
return (
<div className={`${styles.wrapper} ${styles[kindClass]}`}>{message}</div>
);
};
export default Notice;
|