@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>
14 lines (13 loc) • 387 B
TypeScript
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;
accessibilityLabel: string;
size: 16 | 20 | 24 | 32;
icon: IconType;
constructor(sanitizer: DomSanitizer);
private getIconDef;
}