blob: a5d95a71ebe94f7c40562196ddd2e27c987cf433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Icon from "../icon.jsx";
export default function MoneroGUI(props) {
return (
<Icon {...props} width={16} height={16}>
<path
d="M11.28774193548387 12.046451612903226h3.426838709677419C13.34258064516129 14.31941935483871 10.848322580645162 15.84 8 15.84S2.6574193548387095 14.31941935483871 1.2854193548387096 12.046451612903226H4.71225806451613V8.006322580645161L8 11.319354838709677 11.28774193548387 8v4.046451612903225ZM2.9419354838709677 10.529032258064515V3.9535483870967743l5.039096774193548 5.039096774193548L13.058064516129033 3.9535483870967743V10.529032258064515h2.3646451612903228c0.2687096774193548 -0.7934838709677419 0.41729032258064513 -1.6438709677419354 0.41729032258064513 -2.5290322580645164C15.84 3.669032258064516 12.330967741935483 0.16 8 0.16S0.16 3.669032258064516 0.16 8c0 0.8851612903225806 0.14541935483870969 1.735548387096774 0.41729032258064513 2.5290322580645164H2.9419354838709677Z"
strokeWidth="0.0323"
/>
</Icon>
);
}
|