sandeep318kumar commented on code in PR #4019:
URL: https://github.com/apache/ambari/pull/4019#discussion_r2094892269


##########
ambari-web/latest/src/components/Sidebar/SideItemList.tsx:
##########
@@ -0,0 +1,153 @@
+import SideItem from "./SideItem";
+import { Image } from "react-bootstrap";
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
+import {
+  faTachometerAlt,
+  faBriefcase,
+  faEllipsisH,
+  faTasksAlt,
+  faBell,
+  faWrench 
+} from "@fortawesome/free-solid-svg-icons";
+import AmbariLogo from "../../assets/img/ambari-logo.png"
+
+enum SideItemLabels {
+  LOGO = "logo",
+  DASHBOARD = "dashboard",
+  SERVICES = "services",
+  HOSTS = "hosts",
+  ALERTS = "alerts",
+  CLUSTER_ADMIN = "cluster_admin",
+  STACK_AND_VERSIONS = "Stack and Versions",
+  SERVICE_ACCOUNTS = "Service Accounts",
+  KERBEROS = "kerberos",
+  SERVICE_AUTO_START = "Service Auto Start",
+}
+import { DropdownButton, Dropdown } from "react-bootstrap";
+const SideItemList: SideItem[] = [
+  {
+    id: SideItemLabels.LOGO,
+    icon: (
+      <Image src={AmbariLogo} height={25} width={25} />

Review Comment:
   can we use bootstrap inbuilt classnames or custom classes for all these 
inline styling? 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to