import { TextComponent } from "/Components/TextComponent/TextComponent.js"; class SectionTitle extends TextComponent { ariaRole() { return "heading" } ariaLevel() { return "3" } } if (!window.customElements.get('one-sectiontitle')) { window.customElements.define('one-sectiontitle', SectionTitle); } export { SectionTitle };