From 8f62a7cc2f77dfbd56b1f911debfe4ebca05f654 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Mon, 22 Sep 2025 12:18:28 -0400 Subject: [PATCH] fix auto width typing --- packages/webawesome/src/components/icon/icon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webawesome/src/components/icon/icon.ts b/packages/webawesome/src/components/icon/icon.ts index 5bf303ee7..785289805 100644 --- a/packages/webawesome/src/components/icon/icon.ts +++ b/packages/webawesome/src/components/icon/icon.ts @@ -64,7 +64,7 @@ export default class WaIcon extends WebAwesomeElement { @property({ reflect: true }) variant: string; /** Sets the width of the icon to match the cropped SVG viewBox. This operates like the Font `fa-width-auto` class. */ - @property({ attribute: 'auto-width', type: Boolean, reflect: true }) autoWidth: false; + @property({ attribute: 'auto-width', type: Boolean, reflect: true }) autoWidth = false; /** Swaps the opacity of duotone icons. */ @property({ attribute: 'swap-opacity', type: Boolean, reflect: true }) swapOpacity = false;