UNPKG

@gf-ui/components

Version:
9 lines (8 loc) 216 B
import { Component, Host, h } from '@stencil/core'; export class GfTag { render() { return (h(Host, null, "tag")); } static get is() { return "gf-tag"; } static get encapsulation() { return "shadow"; } }