diff --git a/packages/components/src/molecules/ProductCard/ProductCard.tsx b/packages/components/src/molecules/ProductCard/ProductCard.tsx index 4232156699..7bd511efd2 100644 --- a/packages/components/src/molecules/ProductCard/ProductCard.tsx +++ b/packages/components/src/molecules/ProductCard/ProductCard.tsx @@ -19,6 +19,15 @@ export interface ProductCardProps extends HTMLAttributes { * testing-library, and jest). */ testId?: string + + advertisement?: { + adId: string; + campaignId: string; + actionCost: number; + adRequestId: string; + adResponseId: string; +} + } const ProductCard = forwardRef( @@ -29,12 +38,14 @@ const ProductCard = forwardRef( bordered = false, outOfStock, children, + advertisement, ...otherProps }, ref ) { return (