Skip to content

Commit

Permalink
Add back Notification Icon in toolbar
Browse files Browse the repository at this point in the history
Signed-off-by: srikant <[email protected]>
  • Loading branch information
srikant-ch5 committed Jan 15, 2025
1 parent 9f07d58 commit fab593e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import React from "react";
import PropTypes from "prop-types";

import Tooltip from "../tooltip/tooltip.jsx";
import ToggleNotificationPanel from "./../../assets/images/notification_counter_icon.svg";

import { Button } from "@carbon/react";
import SVG from "react-inlinesvg";
Expand Down Expand Up @@ -125,7 +126,7 @@ class ToolbarButtonItem extends React.Component {
case (TOOLBAR_ARRANGE_VERTICALLY):
return <ArrangeVertical disabled={disabled} />;
case (TOOLBAR_TOGGLE_NOTIFICATION_PANEL):
return <NotificationCounter disabled={disabled} />;
return <SVG src={ToggleNotificationPanel} disabled={disabled} />;

default:
return null;
Expand Down

0 comments on commit fab593e

Please sign in to comment.