fix(dees-input-text): Normalize Lucide icon names for password toggle

This commit is contained in:
2025-09-06 13:29:38 +00:00
parent 2c595bf803
commit 8918dc94bd
3 changed files with 7 additions and 2 deletions

View File

@@ -231,7 +231,7 @@ export class DeesInputText extends DeesInputBase {
${this.isPasswordBool
? html`
<div class="showPassword" @click=${this.togglePasswordView}>
<dees-icon .icon=${this.showPasswordBool ? 'lucide:eye' : 'lucide:eye-off'}></dees-icon>
<dees-icon .icon=${this.showPasswordBool ? 'lucide:Eye' : 'lucide:EyeOff'}></dees-icon>
</div>
`
: html``}