Skip to content

Commit

Permalink
hotfix for missing lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnasirulhaque committed May 13, 2024
1 parent 72c03d7 commit 4fc8a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/blocks/GoTop.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { BsArrowUpSquareFill } from 'react-icons/bs';
import { ArrowUp } from 'lucide-react';

interface PropsType {
showGoTop: string;
Expand All @@ -11,7 +11,7 @@ const GoTop: React.FC<PropsType> = (props) => {
<div className={`${props.showGoTop}`} onClick={props.scrollUp}>
<button className=" block">
<div className=" block z-50 fixed w-10 h-10 rounded-3xl right-4 bottom-4 cursor-pointer leading-7 text-center">
<BsArrowUpSquareFill color={`#8AB4F8`} size={40} />
<ArrowUp color={`#8AB4F8`} size={40} />
</div>
</button>
</div>
Expand Down

0 comments on commit 4fc8a19

Please sign in to comment.