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;
}