UNPKG

ng-ytl-zorro-antd

Version:

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

20 lines (18 loc) 517 B
import { Component } from '@angular/core'; @Component({ selector: 'nz-demo-switch-text', template: ` <nz-switch [ngModel]="true"> <i class=" anticon anticon-check" checked></i> <i class=" anticon anticon-cross" unchecked></i> </nz-switch> <div style="margin-top:8px;"> <nz-switch [ngModel]="false"> <span checked></span> <span unchecked></span> </nz-switch> </div> `, styles : [] }) export class NzDemoSwitchTextComponent { }