@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
15 lines (14 loc) • 896 B
TypeScript
import { ThemeProps } from "../../core/system/index.types.js";
import { Component, HTMLStyledProps } from "../../core/components/index.types.js";
import "../../core/index.js";
import { InputAddonStyle } from "./input-addon.style.js";
import { InputProps } from "./input.js";
import "../../index.js";
import * as react827 from "react";
//#region src/components/input/input-addon.d.ts
interface InputAddonProps extends HTMLStyledProps, ThemeProps<InputAddonStyle>, Pick<InputProps, "errorBorderColor" | "focusBorderColor"> {}
declare const InputAddonPropsContext: react827.Context<Partial<InputAddonProps> | undefined>, useInputAddonPropsContext: () => Partial<InputAddonProps> | undefined;
declare const InputAddon: Component<"div", InputAddonProps>;
//#endregion
export { InputAddon, InputAddonProps, InputAddonPropsContext, useInputAddonPropsContext };
//# sourceMappingURL=input-addon.d.ts.map