mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +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.4 KiB
TypeScript
57 lines
2.4 KiB
TypeScript
import React from "react";
|
|
|
|
const FilePython = () => {
|
|
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.314"
|
|
height="16.585"
|
|
rx="1.75"
|
|
fill="#5CABDF"
|
|
/>
|
|
<path
|
|
d="M4 31.42v-9h2.063v1.12h.063c.086-.199.206-.39.363-.575.159-.185.36-.336.605-.452a2.02 2.02 0 0 1 .886-.179c.455 0 .88.12 1.274.358.398.239.719.607.963 1.104.245.497.367 1.13.367 1.9 0 .742-.118 1.362-.354 1.862-.233.5-.548.875-.946 1.125-.395.25-.834.375-1.317.375-.33 0-.615-.054-.856-.162a1.864 1.864 0 0 1-.61-.426 2.046 2.046 0 0 1-.375-.566h-.042v3.515H4Zm2.041-5.728c0 .352.047.659.14.92.097.262.235.465.414.61.182.142.4.213.652.213.256 0 .473-.071.652-.213.18-.145.314-.348.405-.61.094-.261.14-.568.14-.92a2.69 2.69 0 0 0-.14-.916 1.29 1.29 0 0 0-.405-.601 1.005 1.005 0 0 0-.652-.213c-.256 0-.473.07-.652.209-.179.139-.317.338-.413.596-.094.259-.14.567-.14.925ZM12.739 31.42c-.25 0-.486-.02-.707-.06a2.863 2.863 0 0 1-.571-.15l.46-1.512c.204.068.389.108.554.119a.772.772 0 0 0 .43-.081.615.615 0 0 0 .281-.337l.081-.196-2.326-6.784h2.181l1.207 4.67h.068l1.223-4.67h2.194l-2.467 7.172c-.12.358-.288.673-.507.946a2.202 2.202 0 0 1-.84.648c-.34.156-.761.234-1.261.234Z"
|
|
fill="#fff"
|
|
/>
|
|
<rect
|
|
x=".25"
|
|
y="18.584"
|
|
width="21.314"
|
|
height="16.585"
|
|
rx="1.75"
|
|
stroke="#192147"
|
|
strokeWidth=".5"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="a">
|
|
<path fill="#fff" d="M0 0h34v40H0z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default FilePython;
|