UNPKG

jeme-product-card

Version:
9 lines (8 loc) 264 B
import React, { CSSProperties } from 'react'; export interface Props { className?: string; img?: string; style?: CSSProperties; } declare const ProductImage: ({ className, img, style }: Props) => React.JSX.Element; export default ProductImage;