react-restyle-components
Version:
Easy use restyle components
18 lines • 641 B
TypeScript
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