// 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