import { FiMapPin } from "../components/icon"; export type AddressInputProps = { value: string; id?: string; placeholder?: string; required?: boolean; onChange: (val: string) => void; className?: string; }; function AddressInput({ className = "", value, onChange, ...rest }: AddressInputProps) { return (