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.
68 lines
2.7 KiB
TypeScript
68 lines
2.7 KiB
TypeScript
import React from "react";
|
|
|
|
const FileGeneric = () => {
|
|
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"
|
|
/>
|
|
<g clipPath="url(#b)">
|
|
<path
|
|
d="M15.113 26.751c.829.806 1.549 1.507 2.018 1.952.545.52.85 1.242.818 1.984-.033.743-.447 1.624-1.909 1.953-2.924.647-3.218-2.154-3.218-2.154l-.087-.817 2.389-2.918h-.011Z"
|
|
fill="#070708"
|
|
/>
|
|
<path
|
|
d="m8.916 17.298 8.302-7.714s2.073-.891 3.142.308c1.07 1.199.502 2.79.502 2.79l-7.506 7.3-4.44-2.684Z"
|
|
fill="#E2E4EA"
|
|
/>
|
|
<path
|
|
d="M15.113 26.751c-2.378-2.313-5.63-5.475-6.044-5.91-.665-.7-1.484-2.674.196-3.82a2.68 2.68 0 0 1 1.844-.413c2.716.371 2.236 3.374 2.236 3.374l5.902-5.698 5.608 5.496s1.418 1.507.632 2.525c-.785 1.019-7.952 9.518-7.952 9.518s1.003-1.305-.131-2.833c-.655-.891-2.302-2.239-2.302-2.239h.01Z"
|
|
fill="#C5C7D1"
|
|
/>
|
|
<path
|
|
d="M17.633 31.717c.84-1.008 7.112-8.456 7.854-9.411.797-1.019-.632-2.526-.632-2.526l-5.608-5.496 1.615-1.602s.567-1.591-.502-2.79c-1.07-1.199-3.142-.308-3.142-.308l-7.92 7.342-.382.372c-1.21 1.167-.458 2.896.142 3.544.415.434 3.666 3.596 6.044 5.91l-2.346 2.928.044.806s.294 2.812 3.218 2.154c.698-.16 1.156-.435 1.451-.764l.153-.16h.01Z"
|
|
stroke="#515774"
|
|
strokeWidth=".5"
|
|
strokeMiterlimit="10"
|
|
/>
|
|
<path
|
|
d="M15.113 26.751s1.898 1.655 2.269 2.196c.37.541 1.036 1.507.316 2.674"
|
|
stroke="#515774"
|
|
strokeWidth=".5"
|
|
strokeMiterlimit="10"
|
|
/>
|
|
<path
|
|
d="m19.345 14.189-6.021 5.835s.458-1.336-.557-2.578c-1.167-1.443-2.934-.764-2.934-.764a3.714 3.714 0 0 0-.666.372"
|
|
stroke="#515774"
|
|
strokeWidth=".5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</g>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="a">
|
|
<path fill="#fff" d="M0 0h34v40H0z" />
|
|
</clipPath>
|
|
<clipPath id="b">
|
|
<path fill="#fff" d="M8 9h18v24H8z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default FileGeneric;
|