Product Card Minimal
Product Card Minimal
Preview
API
Property | Type | Is Required | Default |
---|---|---|---|
product | Product Type | true | |
className | string | false |
Product Type
packages/isomorphic-core/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[];
};