mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
7 lines
306 B
HTML
7 lines
306 B
HTML
<div @tooltip class="adf-tooltip-card" [style.width.px]="width">
|
|
<img *ngIf="image " [src]="image" [width]="width" alt="{{text}}">
|
|
<hr *ngIf="image" />
|
|
<p *ngIf="text">{{text}}</p>
|
|
<div *ngIf="htmlContent" [innerHTML]="sanitizedHtmlContent()" class="adf-tooltip-card-content"></div>
|
|
</div>
|