forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-logo.js
More file actions
17 lines (16 loc) · 1.43 KB
/
git-logo.js
File metadata and controls
17 lines (16 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';
export default class GitLogo extends React.Component {
render() {
/* eslint-disable max-len */
return (
<svg width="114px" height="115px" viewBox="0 0 114 115">
<g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g className="git-logo-path">
<path d="M111.78,51.977 L62.035,2.2381 C59.1728,-0.6267 54.5268,-0.6267 51.661,2.2381 L41.332,12.5681 L54.434,25.6701 C57.4799,24.6417 60.9711,25.33122 63.3979,27.7585 C65.8373,30.2009 66.5219,33.7219 65.4677,36.778 L78.0957,49.406 C81.1508,48.3532 84.6757,49.03338 87.1152,51.4772 C90.5258,54.8868 90.5258,60.4117 87.1152,63.8222 C83.7041,67.2338 78.1792,67.2338 74.7662,63.8222 C72.2017,61.2557 71.5674,57.4877 72.8663,54.328 L61.0893,42.551 L61.0883,73.542 C61.9198,73.95362 62.7045,74.503 63.3974,75.1929 C66.807,78.6021 66.807,84.126 63.3974,87.5409 C59.9868,90.95 54.4594,90.95 51.0524,87.5409 C47.6423,84.1263 47.6423,78.6024 51.0524,75.1929 C51.89515,74.35165 52.8703,73.7149 53.9108,73.2881 L53.9108,42.0091 C52.8698,41.5841 51.8958,40.9521 51.0518,40.1041 C48.4688,37.5231 47.8467,33.7321 49.1714,30.5602 L36.2554,17.6422 L2.1494,51.7472 C-0.7163,54.6142 -0.7163,59.2602 2.1494,62.1252 L51.8914,111.8642 C54.7552,114.729 59.3996,114.729 62.2674,111.8642 L111.7794,62.3602 C114.6442,59.494 114.6442,54.8466 111.7794,51.9812" id="Shape" />
</g>
</g>
</svg>
);
/* eslint-enable max-len */
}
}