-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGithubIcon.js
30 lines (29 loc) · 1.06 KB
/
GithubIcon.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React from 'react';
import '../SortingVisualizer/SortingVisualizer.css';
function GithubIcon({ className }) {
return (
<svg
onClick={() => {
console.log('heloo');
window
.open(
'https://github.com/ashirbad29/Sorting-Algorithm-Visualizer',
'_blank'
)
.focus();
}}
className={className}
style={{
backgroundColor: '#00303f',
cursor: 'pointer',
}}
xmlns='http://www.w3.org/2000/svg'
width='40'
height='40'
viewBox='0 0 24 24'
>
<path d='M10.9 2.1c-4.6.5-8.3 4.2-8.8 8.7-.5 4.7 2.2 8.9 6.3 10.5.3.1.6-.1.6-.5v-1.6s-.4.1-.9.1c-1.4 0-2-1.2-2.1-1.9-.1-.4-.3-.7-.6-1-.3-.1-.4-.1-.4-.2 0-.2.3-.2.4-.2.6 0 1.1.7 1.3 1 .5.8 1.1 1 1.4 1 .4 0 .7-.1.9-.2.1-.7.4-1.4 1-1.8-2.3-.5-4-1.8-4-4 0-1.1.5-2.2 1.2-3-.1-.2-.2-.7-.2-1.4 0-.4 0-1 .3-1.6 0 0 1.4 0 2.8 1.3.5-.2 1.2-.3 1.9-.3s1.4.1 2 .3C15.3 6 16.8 6 16.8 6c.2.6.2 1.2.2 1.6 0 .8-.1 1.2-.2 1.4.7.8 1.2 1.8 1.2 3 0 2.2-1.7 3.5-4 4 .6.5 1 1.4 1 2.3v2.6c0 .3.3.6.7.5 3.7-1.5 6.3-5.1 6.3-9.3 0-6-5.1-10.7-11.1-10z'></path>
</svg>
);
}
export default GithubIcon;