summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/notice.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/notice.tsx')
-rw-r--r--src/components/atoms/layout/notice.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/atoms/layout/notice.tsx b/src/components/atoms/layout/notice.tsx
index b6e09c5..115bd9c 100644
--- a/src/components/atoms/layout/notice.tsx
+++ b/src/components/atoms/layout/notice.tsx
@@ -1,4 +1,4 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './notice.module.scss';
export type NoticeKind = 'error' | 'info' | 'success' | 'warning';
@@ -19,7 +19,7 @@ export type NoticeProps = {
*
* Render a colored message depending on notice kind.
*/
-const Notice: VFC<NoticeProps> = ({ kind, message }) => {
+const Notice: FC<NoticeProps> = ({ kind, message }) => {
const kindClass = `wrapper--${kind}`;
return (