Skip to content

Commit

Permalink
Update unlock icon for tile card lock features (#20667)
Browse files Browse the repository at this point in the history
Update unlock icon for tile card lock features so it's easier to see the difference between lock and unlock buttons
  • Loading branch information
krazos authored Apr 29, 2024
1 parent a78608b commit 8cca233
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mdiLock, mdiLockOpen } from "@mdi/js";
import { mdiLock, mdiLockOpenVariant } from "@mdi/js";
import { HassEntity } from "home-assistant-js-websocket";
import { css, CSSResultGroup, html, LitElement, nothing } from "lit";
import { customElement, property, state } from "lit/decorators";
Expand Down Expand Up @@ -90,7 +90,7 @@ class HuiLockCommandsCardFeature
pulse: isLocking(this.stateObj) || isUnlocking(this.stateObj),
})}
>
<ha-svg-icon .path=${mdiLockOpen}></ha-svg-icon>
<ha-svg-icon .path=${mdiLockOpenVariant}></ha-svg-icon>
</ha-control-button>
</ha-control-button-group>
`;
Expand Down

0 comments on commit 8cca233

Please sign in to comment.