UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

14 lines (13 loc) 760 B
import { ThemeProps, WithoutThemeProps } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { FieldProps } from "../field/field.js"; import { InputStyle } from "./input.style.js"; import { InputProps } from "./input.js"; import { GroupProps } from "../group/group.js"; //#region src/components/input/input-group.d.ts interface InputGroupRootProps extends WithoutThemeProps<GroupProps, InputStyle>, ThemeProps<InputStyle>, Pick<InputProps, "errorBorderColor" | "focusBorderColor">, FieldProps {} declare const InputGroupRoot: Component<"div", InputGroupRootProps>; //#endregion export { InputGroupRoot, InputGroupRootProps }; //# sourceMappingURL=input-group.d.ts.map