Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions client/src/components/App/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
SlackIcon,
GitHubIcon,
InstagramIcon,
TwitchIcon,
QuestionsIcon,
MapIcon,
UsersIcon,
Expand Down Expand Up @@ -77,6 +78,12 @@ const Footer = () => (
Seguinos en Instagram
</a>
</li>
<li className="footer__social-network">
<TwitchIcon className="icon" />
<a target="_blank" rel="noopener noreferrer" href="https://www.twitch.tv/freecodecampba">
Seguinos en Twitch
</a>
</li>
</ul>
</div>

Expand Down
10 changes: 10 additions & 0 deletions client/src/components/shared/Icons/Twitch.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react'

const TwitchIcon = props => (
<svg viewBox="0 0 128 134" {...props}>
<title>{'Twitch icon'}</title>
<path class="cls-1" d="M89,77l-9,23v94h32v17h18l17-17h26l35-35V77H89Zm107,76-20,20H144l-17,17V173H100V89h96v64Zm-20-41v35H164V112h12Zm-32,0v35H132V112h12Z" transform="translate(-80 -77)"/>
</svg>
)

export default TwitchIcon
2 changes: 2 additions & 0 deletions client/src/components/shared/Icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import MeetupIcon from './Meetup'
import SlackIcon from './Slack'
import GitHubIcon from './GitHub'
import InstagramIcon from './Instagram'
import TwitchIcon from './Twitch'

import QuestionsIcon from './Questions'
import MapIcon from './Map'
Expand All @@ -18,6 +19,7 @@ export {
SlackIcon,
GitHubIcon,
InstagramIcon,
TwitchIcon,
QuestionsIcon,
MapIcon,
UsersIcon,
Expand Down