aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/modals/tooltip.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/modals/tooltip.tsx')
-rw-r--r--src/components/molecules/modals/tooltip.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/molecules/modals/tooltip.tsx b/src/components/molecules/modals/tooltip.tsx
index 73f36e7..80721f3 100644
--- a/src/components/molecules/modals/tooltip.tsx
+++ b/src/components/molecules/modals/tooltip.tsx
@@ -1,5 +1,5 @@
import List, { type ListItem } from '@components/atoms/lists/list';
-import { ReactNode, VFC } from 'react';
+import { FC, ReactNode } from 'react';
import styles from './tooltip.module.scss';
export type TooltipProps = {
@@ -26,7 +26,7 @@ export type TooltipProps = {
*
* Render a tooltip modal.
*/
-const Tooltip: VFC<TooltipProps> = ({
+const Tooltip: FC<TooltipProps> = ({
className = '',
content,
icon,