From e70d4e60fdc1eac32b93446e8eab2d1f4d21da5e Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 5 Oct 2023 19:50:22 -0400 Subject: [PATCH] fix: Microsoft logo does not inheret accent color closes #5944 --- app/components/AuthLogo/SlackLogo.tsx | 41 --------------------------- plugins/azure/client/Icon.tsx | 2 +- 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 app/components/AuthLogo/SlackLogo.tsx diff --git a/app/components/AuthLogo/SlackLogo.tsx b/app/components/AuthLogo/SlackLogo.tsx deleted file mode 100644 index 1d19f5b8b..000000000 --- a/app/components/AuthLogo/SlackLogo.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import * as React from "react"; - -type Props = { - size?: number; - fill?: string; - className?: string; -}; - -function SlackLogo({ size = 34, fill = "#FFF", className }: Props) { - return ( - - - - - - - - - - - - - - - - - - - - - ); -} - -export default SlackLogo; diff --git a/plugins/azure/client/Icon.tsx b/plugins/azure/client/Icon.tsx index f0e0c3cfa..a3e9fa647 100644 --- a/plugins/azure/client/Icon.tsx +++ b/plugins/azure/client/Icon.tsx @@ -8,7 +8,7 @@ type Props = { className?: string; }; -function MicrosoftLogo({ size = 24, fill = "#FFF", className }: Props) { +function MicrosoftLogo({ size = 24, fill = "currentColor", className }: Props) { return (