UNPKG

@itwin/core-react

Version:

A react component library of iTwin.js UI general purpose components

19 lines 972 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module Tabs */ import * as React from "react"; import { Tabs } from "./Tabs.js"; import { Orientation } from "../enums/Orientation.js"; /* eslint-disable @typescript-eslint/no-deprecated */ /** Vertical tabs meant to represent the current position in a page/section * @public * @deprecated in 4.12.0. Use {@link https://itwinui.bentley.com/docs/tabs#vertical iTwinUI Tabs} instead. */ export function VerticalTabs(props) { return (React.createElement(Tabs, { mainClassName: "uicore-tabs-vertical", orientation: Orientation.Vertical, ...props })); } //# sourceMappingURL=VerticalTabs.js.map