UNPKG

bixi

Version:

企业级中后台前端解决方案

23 lines (17 loc) 448 B
import { Component, Input } from '@angular/core'; @Component({ selector: 'nz-icon', template: ` <i nz-icon [nzType]="type" [nzTheme]="theme" [nzSpin]="spin" [nzTwotoneColor]="twoToneColor" [nzIconfont]="iconfont"></i> `, }) export class IconComponent { @Input() type: string; @Input() theme: 'fill' | 'outline' | 'twotone' = 'outline'; @Input() spin = false; @Input() twoToneColor: string; @Input() iconfont: string; }