feat: add user input type with icon support in input component

This commit is contained in:
2026-06-26 10:09:06 -03:00
parent d58445e199
commit f1a4f51695
5 changed files with 29 additions and 4 deletions

View File

@@ -73,6 +73,15 @@
Email
</app-input>
<app-input
type="user"
placeholder="Nombre de usuario"
[value]="user"
(valueChange)="user = $event"
>
Usuario
</app-input>
<app-input
type="password-toggle"
placeholder="********"

View File

@@ -12,6 +12,7 @@ export class ReutilizablesTestPageComponent {
protected textValue = 'Auriculares';
protected numberValue = '24';
protected email = 'usuario@empresa.com';
protected user = 'Juan Perez';
protected password = '12345678';
protected date = '2026-06-24';
protected amount = '125000';