UNPKG

gm-web-components

Version:

Web components for GamaSmart

5 lines (4 loc) 231 B
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)));