Product Card Modern
Product Card Modern
Preview
API
Property | Type | Is Required | Default |
---|---|---|---|
product | Product Type | true | |
className | strting | false |
Product Type
src/components/cards/product-modern-card.tsx
type Product = {
slug?: string;
title: string;
description?: string;
price: string | number;
sale_price?: string | number;
thumbnail: string | StaticImport;
colors?: string[];
};