From 21bb7372b49ab8ac2ebf42923f131930c9ef6f87 Mon Sep 17 00:00:00 2001 From: padreug Date: Sat, 2 Aug 2025 16:53:26 +0200 Subject: [PATCH] refactor: Replace ShoppingCartIcon with ShoppingCart component in ProductCard and Market pages - Update ProductCard.vue and Market.vue to use the new ShoppingCart component from lucide-vue-next instead of the previous ShoppingCartIcon from heroicons. - Adjust button and icon imports for consistency across the application. --- src/components/market/ProductCard.vue | 18 +++++++++--------- src/pages/Market.vue | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/market/ProductCard.vue b/src/components/market/ProductCard.vue index 07c2398..ea585a6 100644 --- a/src/components/market/ProductCard.vue +++ b/src/components/market/ProductCard.vue @@ -10,14 +10,14 @@ /> - +
@@ -102,7 +102,7 @@ import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Badge } from '@/components/ui/badge' import { Avatar, AvatarImage, AvatarFallback } from '@/components/ui/avatar' -import { ShoppingCartIcon } from '@heroicons/vue/24/outline' +import { ShoppingCart } from 'lucide-vue-next' import ProductCard from '@/components/market/ProductCard.vue' const marketStore = useMarketStore()