Skip to main content
Version: v6.8.1

Product Card Minimal

Product Card Minimal

Preview

Product Modern Card preview

API

PropertyTypeIs RequiredDefault
productProduct Typetrue
classNamestringfalse

Product Type

src/components/cards/product-minimal-card.tsx
type Product = {
slug?: string;
title: string;
description?: string;
price: string | number;
sale_price?: string | number;
thumbnail: string | StaticImport;
colors?: string[];
};