@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
62 lines (54 loc) • 889 B
JavaScript
/*!
* 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";
/**
* Predefined sizes for the {@link sap.m.Avatar} control.
*
* @enum {string}
* @public
* @alias sap.m.AvatarSize
* @since 1.73
*/
var AvatarSize = {
/**
* Control size - 2rem
* Font size - 0.75rem
* @public
*/
XS: "XS",
/**
* Control size - 3rem
* Font size - 1.125rem
* @public
*/
S: "S",
/**
* Control size - 4rem
* Font size - 1.625rem
* @public
*/
M: "M",
/**
* Control size - 5rem
* Font size - 2rem
* @public
*/
L: "L",
/**
* Control size - 7rem
* Font size - 2.75rem
* @public
*/
XL: "XL",
/**
* Custom size
* @public
*/
Custom: "Custom"
};
return AvatarSize;
});