UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

37 lines (34 loc) 653 B
/*! * OpenUI5 * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([], function() { "use strict"; /** * Types of {@link sap.m.Avatar} based on the displayed content. * * @enum {string} * @public * @alias sap.m.AvatarType * @since 1.73 */ var AvatarType = { /** * The displayed content is an icon. * @public */ Icon: "Icon", /** * The displayed content is an image. * @public */ Image: "Image", /** * The displayed content is initials. * @public */ Initials: "Initials" }; return AvatarType; });