UNPKG
erc-product-card
Version:
latest (1.0.0-rc)
1.0.0-rc
0.0.1
Este es un paquete de pruebas de despliegue en NPM
Edgar-React-Projects/erc-product-card
erc-product-card
/
dist
/
components
/
ProductImage.d.ts
8 lines
(7 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
CSSProperties
}
from
'react'
;
export
interface
ProductImageProps
{
img
?:
string
;
className
?:
string
;
style
?:
CSSProperties
; }
export
declare
const
ProductImage
:
(
{ img, className, style }:
ProductImageProps
) =>
JSX
.
Element
;