沈斌
2017-12-15 f9b157566af34b8dc28ba10b34d025ac04f3168b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="content__title">
    <h1>
        Font Icons
        <small>Semantic vector graphics, includes antd icons & Simple Line & Font Awesome that can instantly be customized.</small>
    </h1>
</div>
<div class="mb-sm" *ngFor="let group of data">
    <h4 class="border-bottom-1 pb-sm mb-sm">{{group.title}}</h4>
    <nz-alert *ngIf="group.tip" [nzType]="'warning'" [nzShowIcon]="'true'" class="mb-sm">
        <span alert-body [innerHTML]="group.tip"></span>
    </nz-alert>
    <div class="icons" nz-row [nzGutter]="16">
        <div class="item" nz-col [nzXs]="8" [nzMd]="4"
            *ngFor="let item of group.list" (click)="copy(group, item)">
            <em class="{{group.prefix}}{{item.k}}"></em> {{item.k}}
            <em *ngIf="item.a" class="text-grey">(alias)</em>
        </div>
    </div>
</div>