UNPKG
mp-product-card-react-typescript
Version:
latest (1.0.0-rc)
1.0.0-rc
0.1.0
This is a deploy test package to NPM
parodimatias/mp-product-card
mp-product-card-react-typescript
/
dist
/
components
/
ProductImage.d.ts
8 lines
(7 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
export
interface
Props
{
img
?:
string
;
className
?:
string
;
style
?:
React
.
CSSProperties
; }
export
declare
const
ProductImage
:
(
{ img, className, style }:
Props
) =>
JSX
.
Element
;