@microsoft/mgt
Version:
The Microsoft Graph Toolkit
49 lines (48 loc) • 1.08 kB
TypeScript
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
/**
* Defines icon used by svgHelper
*
* @export
* @enum {number}
*/
export declare enum SvgIcon {
/**
* Phone Icon
*/
Phone = 0,
/**
* Email Icon
*/
Email = 1,
/**
* Chat Icon
*/
Chat = 2,
/**
* Small Phone Icon
*/
SmallPhone = 3,
/**
* Small Email Icon
*/
SmallEmail = 4,
/**
* Small Chat Icon
*/
SmallChat = 5,
/**
* Small Location Icon
*/
SmallLocation = 6
}
/**
* returns an svg
* @param svgIcon defined by name
* @param color hex value
*/
export declare function getSvg(svgIcon: SvgIcon, color: string): import("lit-element").TemplateResult;