how to add fa fa icons customize menu using wp_nav_menu function?

There might be a better way to do this, but I would use jQuery to target the menu items and .addClass(). So, something like:

$( document ).ready(function() {
  $(“.menu-item-one”).addClass(“fa fa-icon”);
);