UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

33 lines (29 loc) 526 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 shape for the {@link sap.m.Avatar} control. * * @enum {string} * @public * @alias sap.m.AvatarShape * @since 1.73 */ var AvatarShape = { /** * Circular shape. * @public */ Circle: "Circle", /** * Square shape. * @public */ Square: "Square" }; return AvatarShape; });