UNPKG
gm-web-components
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Web components for GamaSmart
gm-web-components
/
dist
/
collection
/
components
/
image-component
/
image-component.js
5 lines
(4 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
import
{ h }
from
"@stencil/core"
;
export
const
ImageComponent
= (
{ img, title, destination }
) => (
h
(
"div"
, {
class
:
"logo-container"
},
h
(
"img"
, {
src
: img }),
h
(
"a"
, {
href
: destination,
target
:
"_blank"
}, title)));