solive-core
Version:
Solidity Monaco Editor Core Library
13 lines • 471 B
TypeScript
import React from "react";
interface IProps {
name: string;
label: string;
onChange?: (value: string) => void;
onBlur?: (value: string) => void;
errorMessage?: string;
warningMessage?: string;
}
type Props = IProps & React.HTMLAttributes<HTMLInputElement>;
export default function RHFInput({ name, onChange, onBlur, label, errorMessage, warningMessage, ...other }: Props): JSX.Element;
export {};
//# sourceMappingURL=RHFInput.d.ts.map