UNPKG

@kushki/ng-suka

Version:

<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>

19 lines (18 loc) 455 B
import { IconType } from './icon-types'; import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; export declare class Icon { private sanitizer; protected _icon: IconType; content: SafeHtml; baseClass: boolean; /** * Label for accesibility applications */ accessibilityLabel: string; /** * Sets the icon. */ icon: IconType; constructor(sanitizer: DomSanitizer); private getIconDef; }