1 /** 2 * The aspect ratio constant which indicates that the width (of whatever the 3 * aspect ratio constant is used for) is smaller than the height. 4 * 5 * @type {Symbol} 6 */ 7 export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW'); 8 9 /** 10 * The aspect ratio constant which indicates that the width (of whatever the 11 * aspect ratio constant is used for) is larger than the height. 12 * 13 * @type {Symbol} 14 */ 15 export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE'); 16 17 /** 18 * Smallest supported mobile width. 19 */ 20 export const SMALL_MOBILE_WIDTH = '320';