@stratakit/react
Version:
A React component library for StrataKit
18 lines (17 loc) • 966 B
TypeScript
import * as React from "react";
import type { LabeledInput as IuiLabeledInput } from "@itwin/itwinui-react";
import type { PolymorphicForwardRefComponent } from "./~utils.js";
type IuiLabeledInputProps = React.ComponentProps<typeof IuiLabeledInput>;
interface LabeledInputProps extends Pick<IuiLabeledInputProps, "label" | "message" | "status" | "svgIcon" | "wrapperProps" | "displayStyle" | "messageContentProps" | "iconProps" | "labelProps" | "inputWrapperProps" | "htmlSize" | "size"> {
/** NOT IMPLEMENTED. */
children?: IuiLabeledInputProps["children"];
/** NOT IMPLEMENTED. */
size?: IuiLabeledInputProps["size"];
/** NOT IMPLEMENTED */
messageContentProps?: IuiLabeledInputProps["messageContentProps"];
/** NOT IMPLEMENTED. */
status?: IuiLabeledInputProps["status"];
}
/** @see https://itwinui.bentley.com/docs/input */
export declare const LabeledInput: PolymorphicForwardRefComponent<"input", LabeledInputProps>;
export {};