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 && ( - - - - - + + + )} );