UNPKG

react-restyle-components

Version:
18 lines 641 B
import './input.styles.css'; interface InputProps { title: string; defaultValue: string; hasError?: any; errorMsg?: string; defaultMsg?: string; className?: string; disable?: boolean; inputStyle?: string; autoComplete?: 'off' | 'on'; maxlength?: number; onChange: (value: any) => void; onBlur?: (value: any) => void; } export declare const Input: ({ title, defaultValue, className, disable, hasError, errorMsg, defaultMsg, inputStyle, autoComplete, maxlength, onChange, onBlur, }: InputProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=input.component.d.ts.map