blob: 15ca4878f9bd8d70a3b94427b4d451ff54ef5b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import style from '../styles/item.module.css'
import React from 'react'
import Image from 'next/image'
import { IProductVariantPromo } from '~/common/types/promotion'
type Props = {
variant: IProductVariantPromo,
isFree?: boolean
}
const ProductPromoItem = ({
variant,
isFree = false
}: Props) => {
return (
<div className={style.item}>
<div className={style.image}>
<Image src={variant.image} alt={variant.display_name} width={120} height={120} quality={100} />
<div className={style.quantity}>
{variant.qty} pcs {isFree ? '(free)' : ''}
</div>
</div>
<div className={style.name}>{variant.name}</div>
</div>
)
}
export default ProductPromoItem
|