diff --git a/src/components/sound/like/like.module.css b/src/components/sound/like/like.module.css
index a38ec7d..edcd560 100644
--- a/src/components/sound/like/like.module.css
+++ b/src/components/sound/like/like.module.css
@@ -13,6 +13,7 @@
background-color: var(--color-neutral-100);
color: var(--color-foreground-subtle);
cursor: pointer;
+ line-height: 0;
outline: none;
&.isFavorite {
diff --git a/src/components/sound/like/like.tsx b/src/components/sound/like/like.tsx
index f8188fe..cb6b3b4 100644
--- a/src/components/sound/like/like.tsx
+++ b/src/components/sound/like/like.tsx
@@ -1,4 +1,5 @@
import { BiHeart, BiSolidHeart } from 'react-icons/bi/index';
+import { AnimatePresence, motion } from 'framer-motion';
import { useFavoriteStore } from '@/store/favorite';
import { cn } from '@/helpers/styles';
@@ -14,15 +15,24 @@ export function Like({ id }: LikeProps) {
const toggleFavorite = useFavoriteStore(state => state.toggleFavorite);
return (
-
+
+
+
);
}