fleet/frontend/pages/SoftwarePage/components/icons/WindowsDefender.tsx
Gabriel Hernandez 314219a65a
Add UI for adding fleet maintained apps (#22204)
relates to #21775

> NOTE: there still needs to be integrated with the API when this work
is done.

Adds the UI for adding Fleet maintained applications. This includes:

**the view to see all the fleet maintained apps**


![image](https://github.com/user-attachments/assets/f49983d1-df6d-4721-b50d-a4fa78b2c85e)

**The fleet maintained app details Page:**


![image](https://github.com/user-attachments/assets/974c4a83-211e-45de-b0cc-2c5f6e055896)



<!-- Note that API documentation changes are now addressed by the
product design team. -->

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files)
for more information.
- [ ] Added/updated tests
- [ ] Manual QA for all new/changed functionality
2024-09-20 15:47:01 +01:00

14 lines
1.1 KiB
TypeScript

import React from "react";
import type { SVGProps } from "react";
const WindowsDefender = (props: SVGProps<SVGSVGElement>) => (
<svg fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path fill="#fff" d="M0 0h32v32H0z" />
<path
d="M16.858 5.512c-.085-.002-.113.012-.125.044v9.875l9.742-.035c.096-.117.123-1.002.112-4.04l-.012-3.099-.25-.008c-2.914-.097-4.502-.51-6.267-1.633-.588-.374-.707-.437-1.141-.616a7.058 7.058 0 0 0-2.059-.488Zm-1.605.008a4.59 4.59 0 0 0-.538.067c-1.004.171-1.711.452-2.576 1.013-.907.589-1.507.874-2.442 1.15-.903.27-2.422.468-3.767.5l-.385.007-.007 3.12c-.008 2.237.003 3.25.038 3.586l.046.468h9.765V5.528l-.134-.008ZM26.21 16.737c0 .094-9.47.027-9.47.027l.027 10.967c.05 0 .2-.081.658-.35.084-.051.53-.344.992-.652 1.576-1.056 2.706-1.988 3.852-3.173 1.327-1.376 2.211-2.581 2.972-4.051.492-.955.969-2.265.969-2.674v-.094Zm-10.823.02-9.457.019c-.03.055.038.413.154.791.4 1.291 1.176 2.788 2.068 3.985 1.019 1.36 2.407 2.76 4.025 4.062 1.023.819 2.926 2.078 3.145 2.078l.065-10.935Z"
fill="#0177D7"
/>
</svg>
);
export default WindowsDefender;