UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

25 lines (19 loc) 510 B
import { Component, Input } from '@angular/core'; import { InputBoolean } from '@ohayo/util'; @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() @InputBoolean() spin = false; @Input() twoToneColor: string; @Input() iconfont: string; }