UNPKG

@scania/tegel

Version:
26 lines (25 loc) 943 B
import { h, Host } from "@stencil/core"; import generateUniqueId from "../../../utils/generateUniqueId"; /** * @slot <default> - <b>Unnamed slot.</b> For the title text. */ export class TdsHeaderLauncherListTitle { constructor() { this.uuid = generateUniqueId(); } render() { return (h(Host, { key: 'd2480baadcaceab27fb6598d2c781bc74e75df75' }, h("h3", { key: 'e73adadc71723ad00b5f1f138a2fd5d73fdcf8af', class: "tds-header-launcher-list-title", id: `tds-header-launcher-${this.uuid}` }, h("slot", { key: '338bd4e60f844e7c399bd4a8d4b3325fbf6f8d3e' })))); } static get is() { return "tds-header-launcher-list-title"; } static get originalStyleUrls() { return { "$": ["header-launcher-list-title.scss"] }; } static get styleUrls() { return { "$": ["header-launcher-list-title.css"] }; } static get elementRef() { return "host"; } }