blob: 9f69af2f9fa3fd9f75b28695398f8929a403ec0e (
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
|
import { FC, HTMLAttributes } from 'react';
import styles from './notice.module.scss';
export type NoticeKind = 'error' | 'info' | 'success' | 'warning';
export type NoticeProps = Omit<HTMLAttributes<HTMLElement>, 'children'> & {
/**
* The notice kind.
*/
kind: NoticeKind;
/**
* The notice body.
*/
message: string;
};
/**
* Notice component
*
* Render a colored message depending on notice kind.
*/
export const Notice: FC<NoticeProps> = ({
className = '',
kind,
message,
...props
}) => {
const kindClass = `wrapper--${kind}`;
const noticeClass = `${styles.wrapper} ${styles[kindClass]} ${className}`;
return (
<div {...props} className={noticeClass}>
{message}
</div>
);
};
|