class CustomCalendarHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

This Week

Showing 5 days, 4 team members
`; // Initialize feather icons if (typeof feather !== 'undefined') { feather.replace(); } } } customElements.define('custom-calendar-header', CustomCalendarHeader);