goog.provide('M.style.align');
/**
* @namespace M.style.align
*/
(function() {
/**
* Left style alignment
* @const
* @type {string}
* @public
* @api stable
*/
M.style.align.LEFT = "left";
/**
* Center style alignment
* @const
* @type {string}
* @public
* @api stable
*/
M.style.align.CENTER = "center";
/**
* Right style alignment
* @const
* @type {string}
* @public
* @api stable
*/
M.style.align.RIGHT = "right";
/**
* Justify style alignment
* @const
* @type {string}
* @public
* @api stable
*/
M.style.align.JUSTIFY = "justify";
})();