From 55a20db146375c8155774bedab0d59d56b6cac4b Mon Sep 17 00:00:00 2001
From: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
Date: Fri, 3 Sep 2021 12:41:16 -0700
Subject: [PATCH 1/2] Share Icon updated
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
---
portal-ui/src/icons/ShareIcon.tsx | 31 ++++++++++---------
.../Common/TableWrapper/TableActionButton.tsx | 3 +-
.../TableActionIcons/DeleteIcon.tsx | 20 ------------
.../TableActionIcons/DownloadIcon.tsx | 24 --------------
.../TableActionIcons/PencilIcon.tsx | 24 --------------
.../TableActionIcons/ShareIcon.tsx | 26 ----------------
.../TableActionIcons/ViewIcon.tsx | 21 -------------
7 files changed, 17 insertions(+), 132 deletions(-)
delete mode 100644 portal-ui/src/screens/Console/Common/TableWrapper/TableActionIcons/DeleteIcon.tsx
delete mode 100644 portal-ui/src/screens/Console/Common/TableWrapper/TableActionIcons/DownloadIcon.tsx
delete mode 100644 portal-ui/src/screens/Console/Common/TableWrapper/TableActionIcons/PencilIcon.tsx
delete mode 100644 portal-ui/src/screens/Console/Common/TableWrapper/TableActionIcons/ShareIcon.tsx
delete mode 100644 portal-ui/src/screens/Console/Common/TableWrapper/TableActionIcons/ViewIcon.tsx
diff --git a/portal-ui/src/icons/ShareIcon.tsx b/portal-ui/src/icons/ShareIcon.tsx
index ca726fc585..24a348cd2f 100644
--- a/portal-ui/src/icons/ShareIcon.tsx
+++ b/portal-ui/src/icons/ShareIcon.tsx
@@ -14,25 +14,26 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see .
-import React from "react";
-import SvgIcon from "@material-ui/core/SvgIcon";
+import * as React from "react";
+import { SvgIcon, SvgIconProps } from "@material-ui/core";
-interface IShareIcon {
- width?: number;
-}
-
-const ShareIcon = ({ width = 24 }: IShareIcon) => {
+const ShareIcon = (props: SvgIconProps) => {
return (
-
-