Skip to content

Commit

Permalink
fix: remove icon wrapper element
Browse files Browse the repository at this point in the history
  • Loading branch information
minjongbaek committed Oct 28, 2023
1 parent 8410057 commit 7ee7f32
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ui/Bookshelf/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ const Bookshelf = ({ bookshelfName, books, likeCount }: APIBookshelf) => {
<div className="text-md font-bold">{bookshelfName}</div>
<Badge colorScheme="red" fontWeight="bold" size="small">
<div className="flex items-center gap-[0.4rem]">
<div className="h-[1.3rem] w-[1.3rem] fill-white">
<IconHeart />
</div>
<IconHeart fill="white" height="1.3rem" w="1.3rem" />
<div className="bold text-xs">{likeCount}</div>
</div>
</Badge>
Expand Down

0 comments on commit 7ee7f32

Please sign in to comment.