From b634d6f3c354a51e4403374b2e3505e4f2c09351 Mon Sep 17 00:00:00 2001 From: MAZE Date: Wed, 1 Nov 2023 17:46:31 +0330 Subject: [PATCH] fix: remove tooltip --- .../scroll-to-top/scroll-to-top.tsx | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/components/scroll-to-top/scroll-to-top.tsx b/src/components/scroll-to-top/scroll-to-top.tsx index 9f67244..1781282 100644 --- a/src/components/scroll-to-top/scroll-to-top.tsx +++ b/src/components/scroll-to-top/scroll-to-top.tsx @@ -2,7 +2,6 @@ import { useState, useEffect } from 'react'; import { BiUpArrowAlt } from 'react-icons/bi/index'; import { motion, AnimatePresence } from 'framer-motion'; -import { Tooltip } from '@/components/tooltip'; import { mix, fade, slideY } from '@/lib/motion'; import styles from './scroll-to-top.module.css'; @@ -33,19 +32,17 @@ export function ScrollToTop() { return ( {isVisible && ( - - - - - + + + )} );