ngx-admin/docs/app/pages/home/description-section/description-section.component.html

12 lines
303 B
HTML
Raw Normal View History

<div class="descriptions" *ngFor="let item of descriptions">
<div class="icons-block">
<i [innerHTML]="item.icon | eva: { width: 48, height: 48, fill: '#00db92' }"></i>
</div>
<div class="title">
{{ item.title }}
</div>
<p class="description">
{{ item.description }}
</p>
</div>