Menu item not added in sidebar

I am trying to add a logout menu item manually in both sidebar and navbar.
So I write the code inside the Menu_Rendering
$this->addMenuItem(10001, "Logout", "Logout", "logout", -1, "", IsLoggedIn());
This add the menu item in both the sidebar and navbar
and I want to add the menu with icon so change the code to
$this->addMenuItem(10001, "Logout", "Logout", "logout", -1, "", IsLoggedIn(), false, false, "fa-regular fa-left-from-bracket", "", true, false);
now the menu item added with the icons on the navbar only and not added in the sidebar

You may try this instead:

$this->addMenuItem(10001, "Logout", "Logout", "logout", -1, "", IsLoggedIn(), false, false, "fa-regular fa-left-from-bracket", "", false, true);