@ux-aspects/ux-aspects
Version:
Open source user interface framework for building modern, responsive, mobile big data applications
16 lines (15 loc) • 404 B
TypeScript
/**
* Determine the type of icon based upon the identifier.
*
* We support the following iconset:
*
* - `ux-icon` - UX Icon Set
* - `component` - Component icon not tied to a specific set
*
* @param identifier - The name of the icon
*/
export declare function getIconType(identifier: string | null): IconType;
export declare enum IconType {
UxIcon = "ux-icon",
Component = "component"
}