diff --git a/plugins/azure-devops/src/components/AzurePipelinesIcon/AzurePipelinesIcon.tsx b/plugins/azure-devops/src/components/AzurePipelinesIcon/AzurePipelinesIcon.tsx
index a59a088936..bd19331f6e 100644
--- a/plugins/azure-devops/src/components/AzurePipelinesIcon/AzurePipelinesIcon.tsx
+++ b/plugins/azure-devops/src/components/AzurePipelinesIcon/AzurePipelinesIcon.tsx
@@ -14,41 +14,27 @@
* limitations under the License.
*/
-import { makeStyles, useTheme } from '@material-ui/core';
+import { SvgIcon, SvgIconProps } from '@material-ui/core';
-import AzurePipelinesSvg from '../../icons/alt-azure-pipelines-icon.svg';
import React from 'react';
-const useStyles = makeStyles({
- darkMode: {
- filter: 'invert(100%)',
- },
- lightMode: {
- filter: 'invert(0%)',
- },
-});
-
-export const AzurePipelinesIcon = ({
- width,
- height,
-}: {
- width: string;
- height: string;
-}) => {
- const theme = useTheme();
- const classes = useStyles();
-
- return (
-
(
+
+
- );
-};
+
+
+);
diff --git a/plugins/azure-devops/src/components/AzureReposIcon/AzureReposIcon.tsx b/plugins/azure-devops/src/components/AzureReposIcon/AzureReposIcon.tsx
index 1f6ea98521..ca0bd2bcf6 100644
--- a/plugins/azure-devops/src/components/AzureReposIcon/AzureReposIcon.tsx
+++ b/plugins/azure-devops/src/components/AzureReposIcon/AzureReposIcon.tsx
@@ -14,41 +14,57 @@
* limitations under the License.
*/
-import { makeStyles, useTheme } from '@material-ui/core';
+import { SvgIcon, SvgIconProps } from '@material-ui/core';
-import AzureReposSvg from '../../icons/alt-azure-repos-icon.svg';
import React from 'react';
-const useStyles = makeStyles({
- darkMode: {
- filter: 'invert(100%)',
- },
- lightMode: {
- filter: 'invert(0%)',
- },
-});
-
-export const AzureReposIcon = ({
- width,
- height,
-}: {
- width: string;
- height: string;
-}) => {
- const theme = useTheme();
- const classes = useStyles();
-
- return (
-
(
+
+
- );
-};
+
+
+
+
+
+);
diff --git a/plugins/azure-devops/src/components/BuildTable/BuildTable.tsx b/plugins/azure-devops/src/components/BuildTable/BuildTable.tsx
index 6166c81aa6..94d02d15cd 100644
--- a/plugins/azure-devops/src/components/BuildTable/BuildTable.tsx
+++ b/plugins/azure-devops/src/components/BuildTable/BuildTable.tsx
@@ -234,7 +234,7 @@ export const BuildTable = ({ items, loading, error }: BuildTableProps) => {
}}
title={
-
+
Azure Pipelines - Builds ({items ? items.length : 0})
diff --git a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx
index 8c0e7697f4..52c8d98a97 100644
--- a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx
+++ b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx
@@ -119,7 +119,7 @@ export const PullRequestTable = ({ defaultLimit }: PullRequestTableProps) => {
}}
title={
-
+
Azure Repos - Pull Requests ({items ? items.length : 0})
diff --git a/plugins/azure-devops/src/icons/alt-azure-pipelines-icon.svg b/plugins/azure-devops/src/icons/alt-azure-pipelines-icon.svg
deleted file mode 100644
index 9dd1776b5e..0000000000
--- a/plugins/azure-devops/src/icons/alt-azure-pipelines-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/plugins/azure-devops/src/icons/alt-azure-repos-icon.svg b/plugins/azure-devops/src/icons/alt-azure-repos-icon.svg
deleted file mode 100644
index 1b2fb4415f..0000000000
--- a/plugins/azure-devops/src/icons/alt-azure-repos-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file