2024-06-14 16:51:30 -07:00

21 lines
524 B
JavaScript

// dropdown-separator.tsx
import { h } from "@stencil/core";
export class DropdownHeader {
render() {
return (h("div", { class: 'dropdown-header' }, h("span", null, h("slot", null))));
}
static get is() { return "ifx-dropdown-header"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["dropdown-header.scss"]
};
}
static get styleUrls() {
return {
"$": ["dropdown-header.css"]
};
}
}
//# sourceMappingURL=dropdown-header.js.map