forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.js
More file actions
14 lines (12 loc) · 1.72 KB
/
github.js
File metadata and controls
14 lines (12 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
const Github = props => (
<svg width={18} height={18} fill="none" viewBox="0 0 18 18" {...props}>
<path
fill="#9d9d9d"
fillRule="evenodd"
d="M4 0a4 4 0 00-4 4v10a4 4 0 004 4h10a4 4 0 004-4V4a4 4 0 00-4-4H4zm10.195 6.063a6.05 6.05 0 00-2.183-2.238A5.759 5.759 0 009 3a5.76 5.76 0 00-3.012.825 6.05 6.05 0 00-2.183 2.238A6.132 6.132 0 003 9.15c0 1.34.381 2.546 1.145 3.616.763 1.07 1.748 1.811 2.956 2.222.141.027.245.008.313-.056a.317.317 0 00.101-.24c0-.016 0-.16-.003-.432-.003-.273-.004-.51-.004-.713l-.18.032c-.115.021-.26.03-.434.028a3.22 3.22 0 01-.543-.056 1.2 1.2 0 01-.523-.24 1.016 1.016 0 01-.344-.493l-.078-.184a2.011 2.011 0 00-.246-.408.95.95 0 00-.34-.305l-.054-.04a.582.582 0 01-.172-.208c-.016-.037-.003-.068.039-.092a.496.496 0 01.226-.036l.157.024c.104.021.233.085.386.192.154.107.28.246.38.416a1.4 1.4 0 00.433.5c.169.116.34.173.511.173.172 0 .32-.013.446-.04.125-.027.242-.067.351-.12.047-.358.175-.633.383-.825a5.226 5.226 0 01-.8-.144 3.148 3.148 0 01-.735-.313 2.117 2.117 0 01-.629-.536 2.604 2.604 0 01-.41-.841 4.092 4.092 0 01-.16-1.201c0-.646.206-1.196.617-1.65-.193-.486-.175-1.03.055-1.634.15-.048.375-.012.672.108.296.12.514.224.652.309.138.085.249.157.332.216A5.42 5.42 0 019 5.971c.515 0 1.015.07 1.5.208l.297-.192c.203-.128.443-.246.718-.353.276-.106.488-.136.633-.088.235.604.256 1.148.063 1.634.411.454.617 1.004.617 1.65 0 .454-.053.855-.16 1.205-.107.35-.245.63-.414.84-.17.212-.38.39-.633.533a3.15 3.15 0 01-.734.313 5.224 5.224 0 01-.801.144c.27.24.406.62.406 1.137v1.69c0 .096.033.176.098.24s.168.083.309.056c1.208-.411 2.194-1.152 2.957-2.222C14.617 11.696 15 10.49 15 9.15a6.138 6.138 0 00-.805-3.087z"
clipRule="evenodd"
/>
</svg>
);
export default Github;