aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/notice.tsx
blob: a0d1d3e58828a0b33faf92f8428167386a9c2536 (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
31
32
33
34
35
36
37
38
import { FC } from 'react';
import styles from './notice.module.scss';

export type NoticeKind = 'error' | 'info' | 'success' | 'warning';

export type NoticeProps = {
  /**
   * Set additional classnames to the notice wrapper.
   */
  className?: string;
  /**
   * The notice kind.
   */
  kind: NoticeKind;
  /**
   * The notice body.
   */
  message: string;
};

/**
 * Notice component
 *
 * Render a colored message depending on notice kind.
 */
const Notice: FC<NoticeProps> = ({ className = '', kind, message }) => {
  const kindClass = `wrapper--${kind}`;

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

export default Notice;