@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
25 lines (24 loc) • 494 B
TypeScript
export declare enum ValueColor {
/**
* Critical value color.
*/
Critical = "Critical",
/**
* Error value color.
*/
Error = "Error",
/**
* Good value color.
*/
Good = "Good",
/**
* Neutral value color.
*/
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.
*/
None = "None"
}