summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/loaders/spinner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/loaders/spinner.tsx')
-rw-r--r--src/components/atoms/loaders/spinner.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/atoms/loaders/spinner.tsx b/src/components/atoms/loaders/spinner.tsx
index 57b0a43..bff0f25 100644
--- a/src/components/atoms/loaders/spinner.tsx
+++ b/src/components/atoms/loaders/spinner.tsx
@@ -1,8 +1,8 @@
-import { FC } from 'react';
+import { VFC } from 'react';
import { useIntl } from 'react-intl';
import styles from './spinner.module.scss';
-type SpinnerProps = {
+export type SpinnerProps = {
/**
* The loading message. Default: "Loading...".
*/
@@ -14,7 +14,7 @@ type SpinnerProps = {
*
* Render a loading message with animation.
*/
-const Spinner: FC<SpinnerProps> = ({ message }) => {
+const Spinner: VFC<SpinnerProps> = ({ message }) => {
const intl = useIntl();
return (