jiti-meet/react/features/base/aspect-ratio/constants.js

16 lines
374 B
JavaScript

/**
* The aspect ratio constant indicates that the app area's width is smaller than
* the height.
*
* @type {Symbol}
*/
export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
/**
* Aspect ratio constant indicates that the app area's width is larger than
* the height.
*
* @type {Symbol}
*/
export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');