@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
20 lines (19 loc) • 668 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { InputProps } from "./input.types.js";
import { HelpText } from "./helpText.js";
import { InputIcon } from "./inputIcon.js";
import { InputInput } from "./inputInput.js";
//#region src/input/input.d.ts
/**
* @deprecated Use `TextField` instead. `Input` is a thin wrapper kept for backward compatibility and
* will be removed in a future major version.
*/
declare const Input: VuiComponent<'div', InputProps> & {
Icon: typeof InputIcon;
Input: typeof InputInput;
HelpText: typeof HelpText;
};
//#endregion
export { Input, Input as default };
//# sourceMappingURL=input.d.ts.map