diff --git a/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts b/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts index 97933bd5c..5fa7b0a27 100644 --- a/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts +++ b/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts @@ -33,12 +33,6 @@ export class LitDevRippleIconButton extends LitElement { @property() haspopup = ''; - /** - * Whether or not the contents describe the button with aria-describedby. - */ - @property({type: Boolean}) - describedby = false; - /** * Aria expanded for the button. */ @@ -174,7 +168,6 @@ export class LitDevRippleIconButton extends LitElement { aria-live=${this.live ? this.live : nothing} aria-label=${this.label ? this.label : nothing} aria-haspopup=${this.haspopup ? this.haspopup : nothing} - aria-describedby=${this.describedby ? 'ripple' : nothing} aria-expanded=${this.expanded ? this.expanded : nothing} aria-controls=${this.controls ? this.controls : nothing} ?disabled=${this.disabled}