UNPKG
ml-product-card
Version:
latest (0.0.1)
0.0.1
### Ejemplo de paquete para subir a npm
mlupani.vercel.app
mlupani/ml-product-card
ml-product-card
/
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
;