iconSvg is not used on backend settings / registerSettings method

Hello,

as mentioned in the documentation page for the registerSettings plugin method, you can provide a custom vector icon for the backend settings panel using the iconSvg property… However, this icon is not shown. According to modules/system/partials/_settings_menu_items.php (line ~40) only a normal icon property is supported at the moment.

My Code:


    /**
     * @return array
     */
    public function registerSettings()
    {
        return [
            'settings' => [
                'label'         => '1 Label',
                'description'   => '2 Description',
                'category'      => 'offline.mall::lang.general_settings.category',
                'iconSvg'       => 'plugins/ratmd/<plugin_folder>/assets/imgs/easybill-star.svg'
            ]
        ];
    }

image


Is that right, or am I missing something?

Thanks.

Sincerely,
Sam.

PS.: I’m using OC v3.6.22