--- title: ProductCard description: >- Optimized for grid layouts with three variants: default, priceOverlay, and compact. api_name: shop-minis source_url: html: 'https://shopify.dev/docs/api/shop-minis/components/commerce/productcard' md: 'https://shopify.dev/docs/api/shop-minis/components/commerce/productcard.md' --- # ProductCard Optimized for grid layouts with three variants: `default`, `priceOverlay`, and `compact`. Use default for product grids where details matter, priceOverlay for visual-first feeds, compact when dealing with limited space. For some list views where space is limited, `ProductLink` may work better. Exposes composable subcomponents for custom layouts. #### Props * **product** **Product** **required** The product to display in the card * **badgeText** **string** Optional text to display in a badge on the card * **badgeVariant** **'primary' | 'secondary' | 'destructive' | 'outline' | 'none'** Visual style variant for the badge * **children** **React.ReactNode** Custom layout via children * **favoriteButtonDisabled** **boolean** Whether the favorite button is disabled * **impressionTrackingDisabled** **boolean** Whether to disable impression tracking * **onFavoriteToggled** **(isFavorited: boolean) => void** Callback fired when the favorite button is toggled * **onProductClick** **() => void** Callback fired when the product is clicked * **reviewsDisabled** **boolean** Whether review stars are disabled * **selectedProductVariant** **ProductVariant** Optional selected variant of the product to show specific variant data * **touchable** **boolean** Whether the card can be clicked/tapped to navigate to product details * **variant** **'default' | 'priceOverlay' | 'compact'** Visual style variant of the card ### Product * compareAtPrice ```ts Money | null ``` * defaultVariantId ```ts string ``` * featuredImage ```ts ProductImage | null ``` * id ```ts string ``` * isFavorited ```ts boolean ``` * price ```ts Money ``` * referral ```ts boolean ``` * reviewAnalytics ```ts { averageRating?: number; reviewCount?: number; } ``` * selectedVariant ```ts ProductVariant ``` * shop ```ts ProductShop ``` * title ```ts string ``` * variants ```ts ProductVariant[] ``` ### Money * amount ```ts Decimal ``` * currencyCode ```ts CurrencyCode ``` ### Decimal ```ts string ``` ### CurrencyCode ```ts 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KID' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'STN' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VED' | 'VEF' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'XXX' | 'YER' | 'ZAR' | 'ZMW' ``` ### ProductImage * altText ```ts string | null ``` * height ```ts number | null ``` * id ```ts string | null ``` * sensitive ```ts boolean | null ``` * thumbhash ```ts string | null ``` * url ```ts string ``` * width ```ts number | null ``` ### ProductVariant * compareAtPrice ```ts Money | null ``` * id ```ts string ``` * image ```ts ProductImage | null ``` * isFavorited ```ts boolean ``` * price ```ts Money ``` * title ```ts string ``` ### ProductShop * id ```ts string ``` * name ```ts string ``` Examples ## Preview ![productcard](https://shopify.dev/assets/assets/images/templated-apis-screenshots/shop-minis/ProductCard-Bcgva7c6.png) ### Examples * #### ##### tsx ```tsx import {ProductCard} from '@shopify/shop-minis-react' export default function MyComponent() { const handleFavoriteToggled = (productId: string, isFavorited: boolean) => { console.log('Favorite toggled:', productId, isFavorited) } const product = { id: '1', title: 'The Hero Snowboard', price: {amount: '702.95', currencyCode: 'USD'}, featuredImage: { url: 'https://images.unsplash.com/photo-1551524164-687a55dd1126?w=400&h=400&fit=crop&crop=center', altText: 'The Hero Snowboard', sensitive: false, }, shop: {id: 'shop1', name: 'Snow Sports Co.'}, defaultVariantId: 'variant1', isFavorited: false, reviewAnalytics: {averageRating: 4.5, reviewCount: 123}, } return ( ) } ``` * #### ##### Description A default product card with product information ##### tsx ```tsx import {ProductCard} from '@shopify/shop-minis-react' export default function MyComponent() { const handleFavoriteToggled = (productId: string, isFavorited: boolean) => { console.log('Favorite toggled:', productId, isFavorited) } const product = { id: '1', title: 'The Hero Snowboard', price: {amount: '702.95', currencyCode: 'USD'}, featuredImage: { url: 'https://images.unsplash.com/photo-1551524164-687a55dd1126?w=400&h=400&fit=crop&crop=center', altText: 'The Hero Snowboard', sensitive: false, }, shop: {id: 'shop1', name: 'Snow Sports Co.'}, defaultVariantId: 'variant1', isFavorited: false, reviewAnalytics: {averageRating: 4.5, reviewCount: 123}, } return ( ) } ``` * #### ##### Description A compact product card with minimal information ##### tsx ```tsx import {ProductCard} from '@shopify/shop-minis-react' export default function MyComponent() { const product = { id: '1', title: 'The Hero Snowboard', price: {amount: '702.95', currencyCode: 'USD'}, featuredImage: { url: 'https://images.unsplash.com/photo-1551524164-687a55dd1126?w=400&h=400&fit=crop&crop=center', altText: 'The Hero Snowboard', sensitive: false, }, shop: {id: 'shop1', name: 'Snow Sports Co.'}, defaultVariantId: 'variant1', isFavorited: false, reviewAnalytics: {averageRating: 4.5, reviewCount: 123}, } return } ``` ***