@stratakit/react
Version:
A React component library for StrataKit
10 lines (9 loc) • 471 B
TypeScript
import * as React from "react";
import type { InputGrid as IuiInputGrid } from "@itwin/itwinui-react";
import type { PolymorphicForwardRefComponent } from "./~utils.js";
type IuiInputGridProps = React.ComponentProps<typeof IuiInputGrid>;
interface InputGridProps extends Pick<IuiInputGridProps, "labelPlacement"> {
}
/** @see https://itwinui.bentley.com/docs/inputgrid/ */
export declare const InputGrid: PolymorphicForwardRefComponent<"div", InputGridProps>;
export {};