From 5b2dd0a6ec47b55d6b4a172b0e3466e595cd2f1e Mon Sep 17 00:00:00 2001 From: RoyEde Date: Wed, 15 May 2019 21:20:14 -0300 Subject: [PATCH] Added twtich logo --- client/src/components/App/Footer/index.js | 7 +++++++ client/src/components/shared/Icons/Twitch.js | 10 ++++++++++ client/src/components/shared/Icons/index.js | 2 ++ 3 files changed, 19 insertions(+) create mode 100644 client/src/components/shared/Icons/Twitch.js diff --git a/client/src/components/App/Footer/index.js b/client/src/components/App/Footer/index.js index 542a1e4..d3e1d07 100644 --- a/client/src/components/App/Footer/index.js +++ b/client/src/components/App/Footer/index.js @@ -8,6 +8,7 @@ import { SlackIcon, GitHubIcon, InstagramIcon, + TwitchIcon, QuestionsIcon, MapIcon, UsersIcon, @@ -77,6 +78,12 @@ const Footer = () => ( Seguinos en Instagram +
  • + + + Seguinos en Twitch + +
  • diff --git a/client/src/components/shared/Icons/Twitch.js b/client/src/components/shared/Icons/Twitch.js new file mode 100644 index 0000000..a18538f --- /dev/null +++ b/client/src/components/shared/Icons/Twitch.js @@ -0,0 +1,10 @@ +import React from 'react' + +const TwitchIcon = props => ( + + {'Twitch icon'} + + +) + +export default TwitchIcon diff --git a/client/src/components/shared/Icons/index.js b/client/src/components/shared/Icons/index.js index 1f92cae..d127304 100644 --- a/client/src/components/shared/Icons/index.js +++ b/client/src/components/shared/Icons/index.js @@ -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' @@ -18,6 +19,7 @@ export { SlackIcon, GitHubIcon, InstagramIcon, + TwitchIcon, QuestionsIcon, MapIcon, UsersIcon,