FMA: Add icon for Windows App (#33011)

This commit is contained in:
Marko Lisica 2025-09-19 17:12:08 +02:00 committed by GitHub
parent 2e742eabae
commit 870b321df5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
import React from "react";
import type { SVGProps } from "react";
const WindowsAppRemote = (props: SVGProps<SVGSVGElement>) => {
return (
<svg fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<rect fill="#0078D4" width="32" height="32" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M14.5215 15.5809H25V6L14.5215 8.09581V15.5809ZM13.4895 15.581H7V9.59294L13.4895 8.29554V15.581ZM13.4895 23.7245L7 22.4271V16.3992H13.4895V23.7245ZM25 26L14.5215 23.9242V16.3992H25V26Z"
fill="white"
/>
</svg>
);
};
export default WindowsAppRemote;

View file

@ -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;

Binary file not shown.

After

Width:  |  Height:  |  Size: 864 B