@itwin/core-react
Version:
A react component library of iTwin.js UI general purpose components
18 lines • 876 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 Text
*/
import * as React from "react";
import { StyledText } from "./StyledText.js";
/* eslint-disable @typescript-eslint/no-deprecated */
/** Styled disabled text React functional component
* @public
* @deprecated in 4.12.0. Use {@link https://itwinui.bentley.com/docs/typography#text iTwinUI Text} instead.
*/
export function DisabledText(props) {
return React.createElement(StyledText, { ...props, mainClassName: "uicore-text-disabled" });
}
//# sourceMappingURL=DisabledText.js.map