UNPKG

@stratakit/react

Version:

A React component library for StrataKit

14 lines (13 loc) 586 B
import * as React from "react"; import type { Text as IuiText } from "@itwin/itwinui-react"; import type { PolymorphicForwardRefComponent } from "./~utils.js"; type IuiTextProps = React.ComponentProps<typeof IuiText>; interface TextProps extends Pick<IuiTextProps, "variant" | "isMuted" | "isSkeleton"> { /** NOT IMPLEMENTED. */ isMuted?: IuiTextProps["isMuted"]; /** NOT IMPLEMENTED. */ isSkeleton?: IuiTextProps["isSkeleton"]; } /** @see https://itwinui.bentley.com/docs/text */ export declare const Text: PolymorphicForwardRefComponent<"div", TextProps>; export {};