@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
25 lines • 574 B
JavaScript
export let ValueColor = /*#__PURE__*/function (ValueColor) {
/**
* Critical value color.
*/
ValueColor["Critical"] = "Critical";
/**
* Error value color.
*/
ValueColor["Error"] = "Error";
/**
* Good value color.
*/
ValueColor["Good"] = "Good";
/**
* Neutral value color.
*/
ValueColor["Neutral"] = "Neutral";
/**
* None value color.
*
* __Note__: "None" has the same color as "Neutral" but doesn't add the tooltip and accessible-name for the numeric content.
*/
ValueColor["None"] = "None";
return ValueColor;
}({});