UNPKG

@scania/tegel

Version:
22 lines (21 loc) 707 B
import { h, Host } from "@stencil/core"; /** * @slot <default> - <b>Unnamed slot.</b> For content. */ export class TdsCoreHeaderItem { render() { return (h(Host, { key: '065394c82cbfb0b40ee971c5cebc52bcfe85b526' }, h("div", { key: '7028fa75d5be79c1036abdb5bd4f0f6d94718061', class: "item" }, h("slot", { key: '79a30696b9001f8c3f2304d0b73b5f4caa6a9a56' })))); } static get is() { return "tds-core-header-item"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["core-header-item.scss"] }; } static get styleUrls() { return { "$": ["core-header-item.css"] }; } }