//#region src/utils/svg.d.ts declare const SVG_PATH = "svgpath:"; /** * Determines if an icon is SVG * * @param icon - an icon string that will either be an icon class or an SVG path definition (e.g. "fa fa-wrench" or * "svgpath:M 17.0181 0 ...") */ declare function isSvgIcon(icon: string): boolean; /** * Retrieves the SVG path from an SVG icon * * @param icon - an SVG icon string including path definition (e.g. "svgpath:M 17.0181 0 ...") * @returns the SVG icon path or an empty string if the supplied icon is not SVG */ declare function getSvgIconPath(icon: string): string; //#endregion export { SVG_PATH, getSvgIconPath, isSvgIcon };