import { html, WebComponent } from "../../src/index.js"; export class BooleanPropTest extends WebComponent { static props = { isInline: false, anotherone: false, }; get template() { return html`

is-inline: ${this.props.isInline}

another-one: ${this.props.anotherone}

`; } } customElements.define("boolean-prop-test", BooleanPropTest);