-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathglobe-icon.component.tsx
More file actions
39 lines (38 loc) · 1.08 KB
/
globe-icon.component.tsx
File metadata and controls
39 lines (38 loc) · 1.08 KB
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
31
32
33
34
35
36
37
38
39
import React from "react";
export const GlobeIconComponent: React.FC = () => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
stroke="currentColor"
></path>
<path
d="M2 12H22"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
stroke="currentColor"
></path>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22C9.49872 19.2616 8.07725 15.708 8 12C8.07725 8.29203 9.49872 4.73835 12 2V2Z"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
);
};