1) Uploaded your svgs to /images/svgs/ within the theme folder.
2) Within the child theme functions.php file, I have added the sample function to pull in the 3 test SVG’s to confirm everything is working. These would appear at the bottom of the list.
function custom_svg_filter_function() {
function custom_svg_icons( $icons ) {
// add a line like the below for each svg file, where 'icon-file-name'
// is the name of the svg file, without .svg on the end
$icons['actualize-arrows-couple-in-circle'] = 'Actualize-Arrows-Couple-in-Circle';
$icons['battery-status-symbol'] = 'Battery-Status-Symbol';
$icons['battery-tool-with-bolt-sign'] = 'Battery-Tool-With-Bolt-Sign';
// return icons
return $icons;
}
add_filter('spb_outline_svg_icons', 'custom_svg_icons');
}
add_action('init', 'custom_svg_filter_function');
You can now add the rest of the SVG to the list.
– David.