import React, { forwardRef } from 'react' import { HiOutlineFilter, HiOutlineSearch } from 'react-icons/hi' const FormLocation = forwardRef( ( { name, onChange, value, autoComplete, autoFocus, placeholder, disabled, readOnly, onKeyDownCapture, max, min, }, ref ) => { return (
) } ) export default FormLocation