For anyone else who wants the $icon in the overlay.
Copy searchform.php to your child theme
Insert the below code before $search_text = !..
if ($settings['searchType'] == 'overlay') {
if (empty($settings['icon']) || !is_array($settings['icon'])) {
$settings['icon'] = array(
'library' => 'svg',
'svg' => array(
'id' => 197, /* update that this ID with the ID of your icon in Media library */
'filename' => 'replace-with-icon-filename.svg', /* search.svg */
'url' => 'https://yourwebsite.com/wp-content/uploads/2024/01/search.svg', /* update url */
),
);
}
}