I think I managed to load it locally by disabling sb_icon_css and loading through functions.php
Is this the right way to load locally? I found various versions..
add_action( 'wp_enqueue_scripts', 'custom_load_font_awesome' );
/**
* Enqueue Font Awesome.
*/
function custom_load_font_awesome() {
wp_enqueue_style( 'font-awesome-free', 'https://formybrand.com/fonts/fontawesome/css/all.min.css' );
}
Thank you for your time