mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
FMA: Add icon for Windows App (#33011)
This commit is contained in:
parent
2e742eabae
commit
870b321df5
3 changed files with 20 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
BIN
website/assets/images/app-icon-windows-app-60x60@2x.png
vendored
Normal file
BIN
website/assets/images/app-icon-windows-app-60x60@2x.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 864 B |
Loading…
Reference in a new issue