/**
* TextButton component text color options.
* Treat this file as an enum.
* @module textButtonColorOptions
* @category Buttons
* @author Dan Levy <danlevy124@gmail.com>
*/
/**
* Blue color
* @type {string}
*/
export const BLUE = "blue";
/**
* Red color
* @type {string}
*/
export const RED = "red";
Source