aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/notice.tsx
blob: e919182d255ef05589ef4e1feead8abd486102ba (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
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;
};

const Notice: VFC<NoticeProps> = ({ kind, message }) => {
  const kindClass = `wrapper--${kind}`;

  return (
    <div className={`${styles.wrapper} ${styles[kindClass]}`}>{message}</div>
  );
};

export default Notice;