@leanix/components 0.4.753 → 0.4.755
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,3 +20,10 @@ export interface TranslationOptions {
|
|
|
20
20
|
* [1]: solid icon alternative (if available)
|
|
21
21
|
*/
|
|
22
22
|
export declare const ICON_MAP: Record<string, string[]>;
|
|
23
|
+
/**
|
|
24
|
+
* Retrieves the SAP icon for a given Font Awesome icon name.
|
|
25
|
+
* @param faIcon Font Awesome icon name (e.g., 'fa-check')
|
|
26
|
+
* @param solid If true, returns solid variant when available
|
|
27
|
+
* @returns SAP icon name or undefined if not mapped
|
|
28
|
+
*/
|
|
29
|
+
export declare function getSapIcon(faIcon: string, solid?: boolean): string | undefined;
|