fleet/frontend/pages/SoftwarePage/components/icons/LinuxOS.tsx
2024-01-22 13:02:27 -05:00

16 lines
1.7 KiB
TypeScript

import React from "react";
import type { SVGProps } from "react";
const LinuxOS = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
<path fill="#F9FAFC" d="M0 0h32v32H0z" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M22.77 13.296c1.16.862 3.234 2.878 4.218 6.774a.415.415 0 0 1-.186.45.567.567 0 0 1-.54.063 10.02 10.02 0 0 1-1.948-1.026 8.232 8.232 0 0 1-3.172 5.243h1.202c.684 0 1.244.495 1.244 1.1 0 .605-.56 1.1-1.244 1.1H9.573c-.684 0-1.244-.495-1.244-1.1 0-.605.56-1.1 1.244-1.1h1.244a8.237 8.237 0 0 1-3.172-5.216c-.664.459-1.38.788-1.918 1.009a.593.593 0 0 1-.54-.065.45.45 0 0 1-.175-.458c.974-3.813 2.975-5.83 4.146-6.72.073-.1.145-.2.228-.302a5.757 5.757 0 0 1-.29-1.796C9.096 7.805 12.186 5 15.99 5c3.804 0 6.883 2.796 6.883 6.252 0 .623-.104 1.228-.29 1.796l.186.248Zm-12.668 4.94c0 3.181 2.633 5.767 5.877 5.767 3.245 0 5.878-2.576 5.857-5.766 0-1.641-.694-3.694-1.803-5.308.58-.449.943-1.1.943-1.833 0-1.348-1.234-2.448-2.768-2.448-.922 0-1.731.395-2.24 1.009-.507-.614-1.316-1.009-2.238-1.009-1.524 0-2.768 1.091-2.768 2.448 0 .724.363 1.384.943 1.833-1.109 1.614-1.803 3.676-1.803 5.308Zm5.95-6.526 1.544.422c.073.027.135.073.135.137.031.064.01.138-.031.193l-1.545 1.842a.232.232 0 0 1-.186.083.232.232 0 0 1-.187-.083l-1.544-1.842a.213.213 0 0 1-.031-.193.222.222 0 0 1 .155-.137l1.545-.422a.384.384 0 0 1 .145 0Zm-.975-.578c0 .321-.29.578-.653.578-.362 0-.653-.257-.653-.578 0-.32.29-.577.653-.577.363-.01.653.257.653.578Zm2.468.578c.362 0 .653-.257.653-.578 0-.32-.3-.586-.653-.577-.363 0-.653.257-.653.578 0 .32.29.577.653.577Z"
fill="#515774"
/>
</svg>
);
export default LinuxOS;