From fb15687388ae81c0c42240a65065efa5ce9589fc Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Tue, 5 Aug 2025 10:32:05 +0700 Subject: [PATCH] chore: update icon heart to stars --- web-app/src/containers/FavoriteModelAction.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web-app/src/containers/FavoriteModelAction.tsx b/web-app/src/containers/FavoriteModelAction.tsx index 618aed10c..7daa5267f 100644 --- a/web-app/src/containers/FavoriteModelAction.tsx +++ b/web-app/src/containers/FavoriteModelAction.tsx @@ -1,4 +1,4 @@ -import { IconHeart, IconHeartFilled } from '@tabler/icons-react' +import { IconStar, IconStarFilled } from '@tabler/icons-react' import { useFavoriteModel } from '@/hooks/useFavoriteModel' interface FavoriteModelActionProps { @@ -10,14 +10,15 @@ export function FavoriteModelAction({ model }: FavoriteModelActionProps) { const isModelFavorite = isFavorite(model.id) return ( -
toggleFavorite(model)} > {isModelFavorite ? ( - + ) : ( - + )}
)