Skip to content

Commit

Permalink
Add the style for the social media icon
Browse files Browse the repository at this point in the history
  • Loading branch information
FaranoshAmini committed Nov 3, 2023
1 parent 2660536 commit 6be0d41
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions src/components/nav/NavMenu.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from "react";
import { NavLink } from "react-router-dom";
// eslint-disable-next-line import/no-extraneous-dependencies
import { UilTwitter, UilFacebookF, UilSignout } from '@iconscout/react-unicons';
import { UilTwitter, UilFacebookF } from '@iconscout/react-unicons';
import styles from "../../CSS/NavMenu.module.css";
import v from "../../assets/v.png";
import google from "../../assets/google.png";
Expand Down Expand Up @@ -69,21 +69,17 @@ const NavMenu = () => {
</li>
</ul>
</nav>
<div className={styles.icons}>
<UilTwitter />
<UilFacebookF />
<img style={{ width: '20px', height: '20px' }} src={v} alt="v icon" />
<img style={{ width: '30px', height: '20px', marginLeft: '5px' }} src={google} alt="google icon" />
<img style={{ width: '30px', height: '20px', marginLeft: '5px' }} src={pinterest} alt="pinterest icon" />
</div>
<p />
2023 All right reserved
</div>
<div />
<div className={styles.carSocialBox}>
<UilTwitter />
<UilFacebookF />
<img style={{ width: '20px', height: '20px' }} src={v} alt="v icon" />
<img style={{ width: '30px', height: '20px', marginLeft: '5px' }} src={google} alt="google icon" />
<img style={{ width: '30px', height: '20px', marginLeft: '5px' }} src={pinterest} alt="pinterest icon" />
</div>
<p />
2023 All right reserved

<div>
<UilSignout />
</div>
</>
)}
</section>
Expand Down

0 comments on commit 6be0d41

Please sign in to comment.