mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
relates to #9831 Implements the mdm mac OS scripts UI. This is just the UI atm and is not accessible in the application at the moment.
57 lines
2.5 KiB
TypeScript
57 lines
2.5 KiB
TypeScript
import React from "react";
|
|
|
|
const FileBash = () => {
|
|
return (
|
|
<svg width="34" height="40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<g clipPath="url(#a)">
|
|
<path
|
|
d="M29.333 39.751H4.667a2.417 2.417 0 0 1-2.417-2.417V2.668A2.417 2.417 0 0 1 4.667.25h19.562c.64 0 1.255.255 1.709.708l5.104 5.104c.453.454.708 1.068.708 1.71v29.561a2.417 2.417 0 0 1-2.417 2.417Z"
|
|
fill="#fff"
|
|
stroke="#192147"
|
|
strokeWidth=".5"
|
|
/>
|
|
<path
|
|
d="M23.5.501h.834l.5 6.5 6.666.5v1h-6a2 2 0 0 1-2-2v-6Z"
|
|
fill="#C5C7D1"
|
|
/>
|
|
<path
|
|
d="M24.5.334v5.667c0 .737.597 1.333 1.333 1.333h6"
|
|
stroke="#192147"
|
|
strokeWidth=".5"
|
|
/>
|
|
<path
|
|
d="M2.5 20h19a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-19V20Z"
|
|
fill="#C5C7D1"
|
|
/>
|
|
<rect
|
|
x=".25"
|
|
y="18.584"
|
|
width="21.02"
|
|
height="16.351"
|
|
rx="1.75"
|
|
fill="#515774"
|
|
/>
|
|
<path
|
|
d="m10.004 26.514-1.913.052a.714.714 0 0 0-.162-.363.87.87 0 0 0-.345-.251 1.176 1.176 0 0 0-.486-.094c-.241 0-.447.048-.618.145-.168.097-.25.227-.247.392a.419.419 0 0 0 .153.332c.108.094.3.17.576.226l1.261.239c.653.125 1.14.332 1.457.622.321.29.483.673.486 1.15-.003.45-.136.84-.4 1.173-.262.332-.62.59-1.074.775-.455.182-.975.273-1.56.273-.935 0-1.672-.192-2.212-.575A2.149 2.149 0 0 1 4 29.058l2.058-.05c.046.238.164.42.354.545.19.125.433.187.729.187.267 0 .484-.05.652-.149.167-.1.252-.231.255-.396a.42.42 0 0 0-.196-.354c-.128-.09-.328-.162-.6-.213l-1.143-.217c-.656-.12-1.145-.34-1.466-.66-.32-.325-.48-.737-.477-1.237-.003-.437.114-.81.35-1.12.235-.313.57-.551 1.005-.716.435-.165.948-.247 1.539-.247.886 0 1.585.186 2.096.558.512.37.794.878.848 1.525ZM13.276 27.328v3.733h-2.084v-8.727h2.016v3.384h.072c.148-.404.39-.72.725-.947.338-.227.751-.34 1.24-.34.46 0 .86.102 1.201.306.341.202.605.488.793.857.19.37.284.801.281 1.295v4.172h-2.084V27.3c.003-.364-.088-.648-.272-.853-.185-.204-.445-.307-.78-.307a1.14 1.14 0 0 0-.58.145.988.988 0 0 0-.388.405c-.09.176-.137.39-.14.64Z"
|
|
fill="#fff"
|
|
/>
|
|
<rect
|
|
x=".25"
|
|
y="18.584"
|
|
width="21.02"
|
|
height="16.351"
|
|
rx="1.75"
|
|
stroke="#192147"
|
|
strokeWidth=".5"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="a">
|
|
<path fill="#fff" d="M0 0h34v40H0z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default FileBash;
|