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