mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import React from "react";
|
|
|
|
const AppStore = () => {
|
|
return (
|
|
<svg width="42" height="42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<rect
|
|
x=".792"
|
|
y=".792"
|
|
width="40.417"
|
|
height="40.417"
|
|
rx="10.208"
|
|
fill="#515774"
|
|
/>
|
|
<rect
|
|
x=".792"
|
|
y=".792"
|
|
width="40.417"
|
|
height="40.417"
|
|
rx="10.208"
|
|
stroke="#E2E4EA"
|
|
strokeWidth=".417"
|
|
/>
|
|
<path
|
|
d="m20.95 10.456.81-1.4a1.822 1.822 0 1 1 3.16 1.82l-7.805 13.51h5.645c1.83 0 2.855 2.15 2.06 3.64H8.27c-1.01 0-1.82-.81-1.82-1.82s.81-1.82 1.82-1.82h4.64l5.94-10.295-1.855-3.22c-.5-.875-.205-1.98.67-2.49.875-.5 1.98-.205 2.49.67l.795 1.405ZM13.93 29.9l-1.75 3.034a1.822 1.822 0 1 1-3.16-1.82l1.3-2.25c1.47-.454 2.665-.104 3.61 1.036ZM29 24.395h4.735c1.01 0 1.82.81 1.82 1.82s-.81 1.82-1.82 1.82h-2.63l1.775 3.08c.5.876.205 1.98-.67 2.49-.875.5-1.98.206-2.49-.67-2.99-5.185-5.235-9.065-6.725-11.65-1.525-2.63-.435-5.27.64-6.165 1.195 2.05 2.98 5.146 5.365 9.275Z"
|
|
fill="#fff"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default AppStore;
|