@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
9 lines (8 loc) • 1.24 kB
TypeScript
import * as React from "react";
import type { Props } from "./types";
export declare const FakeInput: import("styled-components").StyledComponent<({ children, className }: any) => JSX.Element, any, {}, never>;
export declare const InputContainer: import("styled-components").StyledComponent<({ children, className, labelRef }: any) => JSX.Element, any, {}, never>;
export declare const Prefix: import("styled-components").StyledComponent<({ children, className, iconRef }: any) => JSX.Element, any, {}, never>;
export declare const Input: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<React.RefAttributes<unknown>>, any, {}, never>;
declare const InputField: React.ForwardRefExoticComponent<Pick<Props, "size" | "dataTest" | "label" | "type" | "name" | "id" | "spaceAfter" | "value" | "autoFocus" | "placeholder" | "tabIndex" | "prefix" | "inputMode" | "onFocus" | "onBlur" | "onChange" | "onKeyDown" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onSelect" | "disabled" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required" | "help" | "error" | "maxValue" | "minValue" | "inlineLabel" | "suffix" | "tags" | "dataAttrs"> & React.RefAttributes<HTMLInputElement>>;
export default InputField;