UNPKG

mo-product-card-ts-react

Version:

``` import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'mo-product-card'; ```

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