UNPKG

@stratakit/react

Version:

A React component library for StrataKit

16 lines (15 loc) 648 B
import * as React from "react"; import type { Input as IuiInput } from "@itwin/itwinui-react"; import type { PolymorphicForwardRefComponent } from "./~utils.js"; type IuiInputProps = React.ComponentProps<typeof IuiInput>; interface InputProps extends Pick<IuiInputProps, "status" | "size" | "htmlSize"> { /** NOT IMPLEMENTED. */ children?: IuiInputProps["children"]; /** NOT IMPLEMENTED. */ size?: IuiInputProps["size"]; /** NOT IMPLEMENTED. */ status?: IuiInputProps["status"]; } /** @see https://itwinui.bentley.com/docs/input */ export declare const Input: PolymorphicForwardRefComponent<"input", InputProps>; export {};