@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
25 lines (24 loc) • 722 B
JavaScript
/**
* @license EUPL-1.2
* Copyright (c) 2020-2024 Frameless B.V.
* Copyright (c) 2021-2024 Gemeente Utrecht
*/
import { h } from "@stencil/core";
export class CodeBlock {
render() {
return (h("pre", { key: '43942ffdbee95c11991d47070dcda45140cd793d', class: "utrecht-code-block" }, h("slot", { key: '89a40704f2ef9fc7a139c317941838d5127f77f5' })));
}
static get is() { return "utrecht-code-block"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["code-block.scss"]
};
}
static get styleUrls() {
return {
"$": ["code-block.css"]
};
}
}
//# sourceMappingURL=code-block.js.map