From 937cbd1c2040ccba6cac5f458cf6627594a0d8ad Mon Sep 17 00:00:00 2001
From: Dinesh <97143739+dinesh-aot@users.noreply.github.com>
Date: Wed, 8 Nov 2023 12:55:51 -0800
Subject: [PATCH] Pause icon was missing in the phase accordion (#1196)
* project notification template updated + master templates added
* pause icon was missing
---
epictrack-web/src/components/icons/index.tsx | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/epictrack-web/src/components/icons/index.tsx b/epictrack-web/src/components/icons/index.tsx
index 50002700f..cb80fe4b7 100644
--- a/epictrack-web/src/components/icons/index.tsx
+++ b/epictrack-web/src/components/icons/index.tsx
@@ -308,6 +308,17 @@ const ExclamationMediumIcon = (props: IconProps) => {
);
};
+const PauseIcon = (props: IconProps) => {
+ return (
+
+ );
+};
+
const icons: { [x: string]: React.FC } = {
AllIcon,
DashboardIcon,
@@ -340,6 +351,7 @@ const icons: { [x: string]: React.FC } = {
GoToIcon,
ExclamationMediumIcon,
ExclamationSmallIcon,
+ PauseIcon,
};
export default icons;