fix auto width typing (#1482)

This commit is contained in:
Konnor Rogers
2025-09-24 13:48:04 -04:00
committed by GitHub
parent ce3496a621
commit 87864924e1

View File

@@ -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;