aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/moon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/moon.tsx')
-rw-r--r--src/components/atoms/icons/moon.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/atoms/icons/moon.tsx b/src/components/atoms/icons/moon.tsx
index 4f52319..ec4fa0c 100644
--- a/src/components/atoms/icons/moon.tsx
+++ b/src/components/atoms/icons/moon.tsx
@@ -1,7 +1,7 @@
-import { VFC } from 'react';
+import { FC } from 'react';
import styles from './moon.module.scss';
-type MoonProps = {
+export type MoonProps = {
/**
* Set additional classnames to the icon.
*/
@@ -12,7 +12,7 @@ type MoonProps = {
title?: string;
};
-const Moon: VFC<MoonProps> = ({ className = '', title }) => {
+const Moon: FC<MoonProps> = ({ className = '', title }) => {
return (
<svg
className={`${styles.icon} ${className}`}