UNPKG
nicohc185-do-product-cart
Version:
latest (1.1.0-rc)
1.1.0-rc
1.0.0-rc
0.1.1
Este es un paquete de pruebas de despliegue en NPM
NicoHC185/do-product-cart
nicohc185-do-product-cart
/
dist
/
components
/
ProductImage.d.ts
10 lines
(9 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
{
CSSProperties
}
from
"react"
;
export
interface
Props
{
img
?:
string
;
className
?:
string
;
style
?:
CSSProperties
; }
export
declare
const
ProductImage
:
(
{ img, className, style }:
Props
) =>
React
.
JSX
.
Element
;
export
default
ProductImage
;