From b13b6db6f7f8c0b3e8aac668717d51fdf791e2fc Mon Sep 17 00:00:00 2001
From: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
Date: Tue, 7 Sep 2021 15:48:34 -0700
Subject: [PATCH] Share Icon updated (#1008)
---
portal-ui/src/icons/ShareIcon.tsx | 31 ++++++++++---------
.../Common/TableWrapper/TableActionButton.tsx | 5 ++-
.../TableActionIcons/DeleteIcon.tsx | 20 ------------
.../TableActionIcons/DownloadIcon.tsx | 24 --------------
.../TableActionIcons/PencilIcon.tsx | 24 --------------
.../TableActionIcons/ShareIcon.tsx | 26 ----------------
.../TableActionIcons/ViewIcon.tsx | 21 -------------
.../BasicDashboard/DriveInfoCard.tsx | 3 +-
.../src/screens/Console/Users/UserDetails.tsx | 8 +++--
9 files changed, 25 insertions(+), 137 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 ca726fc58..24a348cd2 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 (
-
-