UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

11 lines (10 loc) 500 B
import { VuiComponent } from "../core/vui.js"; import { InputInputProps } from "./input.types.js"; import "../index.js"; //#region src/input/inputInput.d.ts declare const InputInputBase: import("styled-components").StyledComponent<"input", any, {}, never>; /** Displays an input element within the Input component. */ declare const InputInput: VuiComponent<"input", InputInputProps>; //#endregion export { InputInput, InputInput as default, InputInputBase }; //# sourceMappingURL=inputInput.d.ts.map