UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

15 lines (13 loc) 369 B
import { Component } from '@angular/core'; @Component({ selector: 'nz-demo-input-affix', template: ` <nz-input [nzType]="'text'" [nzPlaceHolder]="'Enter your userName'"> <ng-template #prefix> <i class="anticon anticon-user"></i> </ng-template> </nz-input> `, styles : [] }) export class NzDemoInputAffixComponent { }