UNPKG

@meshify/form-elements

Version:
14 lines (13 loc) 327 B
/// <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;