UNPKG

@huluvu424242/honey-webcomponents

Version:

Text to Speech component wich is reading texts from DOM elements.

16 lines (15 loc) 452 B
import { Component, h, Host } from "@stencil/core"; export class HoneyWebcomponents { render() { return (h(Host, null)); } static get is() { return "honey-webcomponents"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["honey-webcomponents.css"] }; } static get styleUrls() { return { "$": ["honey-webcomponents.css"] }; } static get assetsDirs() { return ["assets"]; } }