forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithubLarge.js
More file actions
18 lines (16 loc) · 1.18 KB
/
GithubLarge.js
File metadata and controls
18 lines (16 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import { useTheme } from '../../components/layout';
const GitHub = props => {
const white = useTheme().homepage.white;
return (
<svg width={82} height={84} fill="none" viewBox="0 0 82 84" {...props}>
<path
fill={white}
fillRule="evenodd"
d="M40.998.414C0 .414 0 .414 0 43.242c0 40.63 0 40.63 28.04 40.636 2.05.392 2.798-.93 2.798-2.064 0-1.017-.035-3.711-.055-7.285-11.404 2.589-13.811-5.74-13.811-5.74-1.864-4.947-4.553-6.266-4.553-6.266-3.723-2.657.28-2.604.28-2.604 4.115.302 6.28 4.413 6.28 4.413 3.657 6.544 9.596 4.655 11.933 3.56.373-2.767 1.431-4.656 2.604-5.727C24.41 61.084 14.84 57.41 14.84 40.998c0-4.674 1.597-8.499 4.22-11.492-.421-1.084-1.828-5.437.403-11.334 0 0 3.441-1.152 11.275 4.39 3.27-.951 6.777-1.424 10.264-1.442 3.48.018 6.988.493 10.264 1.442 7.827-5.542 11.263-4.39 11.263-4.39 2.237 5.897.83 10.25.408 11.334 2.628 2.993 4.215 6.816 4.215 11.492 0 16.452-9.586 20.073-18.72 21.133 1.471 1.321 2.783 3.936 2.783 7.931 0 5.726-.051 10.345-.051 11.75 0 1.145.738 2.477 2.819 2.06C82 83.872 82 83.878 82 43.242 82 .414 82 .414 40.998.414z"
clipRule="evenodd"
/>
</svg>
);
};
export default GitHub;