trimox / angular-mdc-web

Angular wrapper for Material Design (Web) Components
https://trimox.github.io/angular-mdc-web
MIT License
519 stars 87 forks source link

MdcIconButton doesn't display properly in mdc-text-field #2255

Open PabloG6 opened 4 years ago

PabloG6 commented 4 years ago

MdcIconButton doesn't display according to specifications in text field.

<mdc-form-field fluid>
    <mdc-text-field [type]="showPassword ? 'text' : 'password'" label="Password" outlined>
       <button mdcIconButton mdcTextFieldIcon trailing [on]="true" (click)="showPassword = !showPassword">
       <mdc-icon mdcIconOn>visibility</mdc-icon>
     <mdc-icon>visibility_off</mdc-icon>
     </button>
 </mdc-text-field>
</mdc-form-field>`

image