@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
20 lines (19 loc) • 535 B
JavaScript
import { h } from "@stencil/core";
export class Separator {
render() {
return h("hr", { key: '077dfa670fe007926503495186d6a336c1fe4326', class: "utrecht-separator" });
}
static get is() { return "utrecht-separator"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["separator.scss"]
};
}
static get styleUrls() {
return {
"$": ["separator.css"]
};
}
}
//# sourceMappingURL=separator.js.map