@itwin/core-react
Version:
A react component library of iTwin.js UI general purpose components
18 lines • 776 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Common
*/
/**
* Enumeration of orientation.
* @public
* @deprecated in 4.16.0. Use {@link @itwin/components-react#Orientation} instead.
*/
export var Orientation;
(function (Orientation) {
Orientation[Orientation["Horizontal"] = 0] = "Horizontal";
Orientation[Orientation["Vertical"] = 1] = "Vertical";
})(Orientation || (Orientation = {}));
//# sourceMappingURL=Orientation.js.map