File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ import { GithubIcon } from './icons/GithubIcon'
88import { DiscordIcon } from './icons/DiscordIcon'
99import { LinkedinIcon } from './icons/LinkedinIcon'
1010import { TwitterIcon } from './icons/TwitterIcon'
11+ import EmailIcon from './icons/EmailIcon'
12+
1113
1214const socialMediaLinks = [
1315 {
@@ -30,6 +32,10 @@ const socialMediaLinks = [
3032 Icon : TwitterIcon ,
3133 Link : 'https://twitter.com/gofr_dev' ,
3234 } ,
35+ {
36+ Icon : EmailIcon ,
37+ 38+ } ,
3339]
3440
3541const footerLinks = [
Original file line number Diff line number Diff line change 1+ import * as React from "react" ;
2+
3+ const EmailIcon = ( props ) => (
4+ < svg
5+ xmlns = "http://www.w3.org/2000/svg"
6+ fill = "currentColor"
7+ viewBox = "0 0 24 24"
8+ { ...props }
9+ >
10+ < path d = "M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0z" > </ path >
11+ < path d = "M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0z" > </ path >
12+ </ svg >
13+ ) ;
14+
15+ export default EmailIcon ;
You can’t perform that action at this time.
0 commit comments