@stratakit/react
Version:
A React component library for StrataKit
16 lines (15 loc) • 678 B
TypeScript
import * as React from "react";
import type { Label as IuiLabel } from "@itwin/itwinui-react";
import type { PolymorphicForwardRefComponent } from "./~utils.js";
type IuiLabelProps = React.ComponentProps<typeof IuiLabel>;
interface LabelProps extends Pick<IuiLabelProps, "displayStyle" | "disabled" | "required"> {
/** NOT IMPLEMENTED. */
displayStyle?: IuiLabelProps["displayStyle"];
/** NOT IMPLEMENTED. */
disabled?: IuiLabelProps["disabled"];
/** NOT IMPLEMENTED. */
required?: IuiLabelProps["required"];
}
/** @see https://itwinui.bentley.com/docs/label */
export declare const Label: PolymorphicForwardRefComponent<"label", LabelProps>;
export {};