diff --git a/frontend/pages/SoftwarePage/components/icons/WindowsAppRemote.tsx b/frontend/pages/SoftwarePage/components/icons/WindowsAppRemote.tsx new file mode 100644 index 0000000000..7ff3cb3f7f --- /dev/null +++ b/frontend/pages/SoftwarePage/components/icons/WindowsAppRemote.tsx @@ -0,0 +1,18 @@ +import React from "react"; + +import type { SVGProps } from "react"; + +const WindowsAppRemote = (props: SVGProps) => { + return ( + + + + + ); +}; +export default WindowsAppRemote; diff --git a/frontend/pages/SoftwarePage/components/icons/index.ts b/frontend/pages/SoftwarePage/components/icons/index.ts index d2013903ff..c7146d776e 100644 --- a/frontend/pages/SoftwarePage/components/icons/index.ts +++ b/frontend/pages/SoftwarePage/components/icons/index.ts @@ -46,6 +46,7 @@ import YubikeyManager from "./YubikeyManager"; import BeyondCompare from "./BeyondCompare"; import ITerm from "./ITerm"; import VncViewer from "./VncViewer"; +import WindowsAppRemote from "./WindowsAppRemote"; // SOFTWARE_NAME_TO_ICON_MAP list "special" applications that have a defined // icon for them, keys refer to application names, and are intended to be fuzzy @@ -84,6 +85,7 @@ export const SOFTWARE_NAME_TO_ICON_MAP = { "beyond compare": BeyondCompare, iterm2: ITerm, "vnc viewer": VncViewer, + "windows app": WindowsAppRemote, "omnissa horizon client": OmnissaHorizonClient, } as const; diff --git a/website/assets/images/app-icon-windows-app-60x60@2x.png b/website/assets/images/app-icon-windows-app-60x60@2x.png new file mode 100644 index 0000000000..fefbb7f24c Binary files /dev/null and b/website/assets/images/app-icon-windows-app-60x60@2x.png differ