@meshify/form-elements
Version:
Formik form elements for use through our forms
14 lines (13 loc) • 327 B
TypeScript
/// <reference types="react" />
import "./../styles/formik-input.scss";
interface IProps {
name: string;
label?: string;
required: boolean;
type?: string;
placeholder?: string;
disabled?: boolean;
id?: string;
}
declare const FormikInput: (props: IProps) => JSX.Element;
export default FormikInput;