Skip to content

Commit ab72e63

Browse files
committed
make updates based on suggestions
1 parent 418057d commit ab72e63

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/assets/img/thank-you.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Our icons were sourced from the following:
1111
* [Twitter social badge icons created by Freepik - Flaticon](https://www.flaticon.com/free-icons/twitter-social-badge)
1212
* [Vimeo icons created by Md Tanvirul Haque - Flaticon](https://www.flaticon.com/free-icons/vimeo)
1313
* [Youtube icons created by Freepik - Flaticon](https://www.flaticon.com/free-icons/youtube)
14-
* [Linkedin icons created by IconScout](https://iconscout.com/free-icon/linkedin-48)
14+
* [LinkedIn icons created by mohammed mahdi - Flaticon](https://www.flaticon.com/free-icons/mass-media)

src/assets/svg/Linkedin.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import * as React from 'react'
22

3-
const Linkedin = ({ height, fill }) => (
3+
const LinkedIn = ({ height, fill }) => (
44
<svg
55
height={height}
66
width={height}
77
fill={fill}
8-
viewBox="0 0 144 144"
9-
xmlns="http://www.w3.org/2000/svg"
8+
viewBox='0 0 144 144'
9+
xmlns='http://www.w3.org/2000/svg'
1010
>
11-
<path d="M67.5 0h9c.4.1.7.2 1.1.2 10.8.8 21 3.8 30.3 9.4 19.1 11.4 30.9 28 35 50 .5 2.6.7 5.3 1.1 7.9v9c-.1.4-.2.7-.2 1.1-.9 12.3-4.8 23.7-11.7 34-11.5 17-27.3 27.5-47.6 31.3-2.7.5-5.4.8-8 1.1h-9c-.4-.1-.7-.2-1.1-.2-14.3-1.1-27.3-6.1-38.6-14.9-14.5-11.5-23.5-26.4-26.7-44.6-.5-2.6-.7-5.2-1.1-7.8v-9l.6-5.1c2.1-14.7 8-27.6 18-38.6C29.7 11.5 43.4 3.9 59.7 1.1 62.3.6 64.9.4 67.5 0zm41.8 107.6c0-.3.1-.5.1-.7 0-11.5.1-23.1-.1-34.6 0-2.1-.7-4.4-1.5-6.4-5.3-11.9-22.5-13.6-30.7-3.2-.3.4-.6.8-1 1.2-.1 0-.2-.1-.3-.1v-6.4H61v50.2h15.6V83.1c0-1.6 0-3.3.1-4.9.2-2.6 1.4-4.8 3.4-6.6 4.8-4.2 11.4-2.3 13 3.9.4 1.5.5 3.1.5 4.7v27.4h15.7zm-57.8 0V57.5H35.6v50.1h15.9zm-8-56.9c5 0 9-4 9.1-9 0-5-4-9-9-9.1-5 0-9 4-9 9s3.9 9 8.9 9.1z" />
11+
<path d='M67.5 0h9c.4.1.7.2 1.1.2 10.8.8 21 3.8 30.3 9.4 19.1 11.4 30.9 28 35 50 .5 2.6.7 5.3 1.1 7.9v9c-.1.4-.2.7-.2 1.1-.9 12.3-4.8 23.7-11.7 34-11.5 17-27.3 27.5-47.6 31.3-2.7.5-5.4.8-8 1.1h-9c-.4-.1-.7-.2-1.1-.2-14.3-1.1-27.3-6.1-38.6-14.9-14.5-11.5-23.5-26.4-26.7-44.6-.5-2.6-.7-5.2-1.1-7.8v-9l.6-5.1c2.1-14.7 8-27.6 18-38.6C29.7 11.5 43.4 3.9 59.7 1.1 62.3.6 64.9.4 67.5 0zm41.8 107.6c0-.3.1-.5.1-.7 0-11.5.1-23.1-.1-34.6 0-2.1-.7-4.4-1.5-6.4-5.3-11.9-22.5-13.6-30.7-3.2-.3.4-.6.8-1 1.2-.1 0-.2-.1-.3-.1v-6.4H61v50.2h15.6V83.1c0-1.6 0-3.3.1-4.9.2-2.6 1.4-4.8 3.4-6.6 4.8-4.2 11.4-2.3 13 3.9.4 1.5.5 3.1.5 4.7v27.4h15.7zm-57.8 0V57.5H35.6v50.1h15.9zm-8-56.9c5 0 9-4 9.1-9 0-5-4-9-9-9.1-5 0-9 4-9 9s3.9 9 8.9 9.1z' />
1212
</svg>
1313
)
1414

15-
export default Linkedin
15+
export default LinkedIn

src/components/SocialIcon/SocialIcon.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import TikTok from '../../assets/svg/TikTok'
77
import Twitter from '../../assets/svg/Twitter'
88
import Vimeo from '../../assets/svg/Vimeo'
99
import YouTube from '../../assets/svg/YouTube'
10-
import Linkedin from '../../assets/svg/Linkedin'
10+
import LinkedIn from '../../assets/svg/LinkedIn'
1111
import './social-icon.css'
1212

1313
const iconsList = {
@@ -18,7 +18,7 @@ const iconsList = {
1818
twitter: (height, color) => <Twitter height={height} fill={color} />,
1919
vimeo: (height, color) => <Vimeo height={height} fill={color} />,
2020
youtube: (height, color) => <YouTube height={height} fill={color} />,
21-
linkedin: (height, color) => <Linkedin height={height} fill={color}/>,
21+
linkedin: (height, color) => <LinkedIn height={height} fill={color}/>,
2222
}
2323

2424
const SocialIcon = ({ addClass, color, height, icon, url }) => (

0 commit comments

Comments
 (0)