From 8c921a05d6e02e89ff085a716bcbfb7a5907cbf6 Mon Sep 17 00:00:00 2001 From: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> Date: Thu, 19 Sep 2019 22:24:08 +0530 Subject: [PATCH] feat: add top five company logos (#36812) --- client/src/assets/images/AmazonLogo.js | 72 +++++++++++++++++++++++ client/src/assets/images/AppleLogo.js | 26 ++++++++ client/src/assets/images/GoogleLogo.js | 30 ++++++++++ client/src/assets/images/MicrosoftLogo.js | 29 +++++++++ client/src/assets/images/SpotifyLogo.js | 23 ++++++++ 5 files changed, 180 insertions(+) create mode 100644 client/src/assets/images/AmazonLogo.js create mode 100644 client/src/assets/images/AppleLogo.js create mode 100644 client/src/assets/images/GoogleLogo.js create mode 100644 client/src/assets/images/MicrosoftLogo.js create mode 100644 client/src/assets/images/SpotifyLogo.js diff --git a/client/src/assets/images/AmazonLogo.js b/client/src/assets/images/AmazonLogo.js new file mode 100644 index 0000000000..87d8c04d65 --- /dev/null +++ b/client/src/assets/images/AmazonLogo.js @@ -0,0 +1,72 @@ +/* eslint-disable max-len */ +import React from 'react'; + +const propTypes = {}; + +function SpotifyLogo(props) { + return ( + + + + + + + + + + + + + + + + + ); +} + +SpotifyLogo.displayName = 'SpotifyLogo'; +SpotifyLogo.propTypes = propTypes; + +export default SpotifyLogo; diff --git a/client/src/assets/images/AppleLogo.js b/client/src/assets/images/AppleLogo.js new file mode 100644 index 0000000000..b82e5cf7c2 --- /dev/null +++ b/client/src/assets/images/AppleLogo.js @@ -0,0 +1,26 @@ +/* eslint-disable max-len */ +import React from 'react'; + +const propTypes = {}; + +function AppleLogo(props) { + return ( + + + + + + + ); +} + +AppleLogo.displayName = 'AppleLogo'; +AppleLogo.propTypes = propTypes; + +export default AppleLogo; diff --git a/client/src/assets/images/GoogleLogo.js b/client/src/assets/images/GoogleLogo.js new file mode 100644 index 0000000000..ea58870c3b --- /dev/null +++ b/client/src/assets/images/GoogleLogo.js @@ -0,0 +1,30 @@ +/* eslint-disable max-len */ +import React from 'react'; + +const propTypes = {}; + +function GoogleLogo(props) { + return ( + + + + + + + + + + + ); +} + +GoogleLogo.displayName = 'GoogleLogo'; +GoogleLogo.propTypes = propTypes; + +export default GoogleLogo; diff --git a/client/src/assets/images/MicrosoftLogo.js b/client/src/assets/images/MicrosoftLogo.js new file mode 100644 index 0000000000..692a241a88 --- /dev/null +++ b/client/src/assets/images/MicrosoftLogo.js @@ -0,0 +1,29 @@ +/* eslint-disable max-len */ +import React from 'react'; + +const propTypes = {}; + +function MicrosoftLogo(props) { + return ( + + + + + + + + + + ); +} + +MicrosoftLogo.displayName = 'MicrosoftLogo'; +MicrosoftLogo.propTypes = propTypes; + +export default MicrosoftLogo; diff --git a/client/src/assets/images/SpotifyLogo.js b/client/src/assets/images/SpotifyLogo.js new file mode 100644 index 0000000000..32561ff74c --- /dev/null +++ b/client/src/assets/images/SpotifyLogo.js @@ -0,0 +1,23 @@ +/* eslint-disable max-len */ +import React from 'react'; + +const propTypes = {}; + +function SpotifyLogo(props) { + return ( + + + + ); +} + +SpotifyLogo.displayName = 'SpotifyLogo'; +SpotifyLogo.propTypes = propTypes; + +export default SpotifyLogo;