Skip to content

Commit

Permalink
Change email icon
Browse files Browse the repository at this point in the history
  • Loading branch information
arifszn committed Feb 18, 2023
1 parent 76fa074 commit f5b9ed4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/details/index.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { MdLocationOn, MdMail } from 'react-icons/md';
import { MdLocationOn } from 'react-icons/md';
import {
AiFillGithub,
AiFillInstagram,
AiFillMediumSquare,
} from 'react-icons/ai';
import { SiTwitter } from 'react-icons/si';
import { CgDribbble } from 'react-icons/cg';
import { RiPhoneFill } from 'react-icons/ri';
import { RiPhoneFill, RiMailFill } from 'react-icons/ri';
import { Fragment } from 'react';
import {
FaBehanceSquare,
Expand Down Expand Up @@ -232,7 +232,7 @@ const Details = ({ profile, loading, social, github }) => {
)}
{social?.email && (
<ListItem
icon={<MdMail />}
icon={<RiMailFill />}
title="Email:"
value={social.email}
link={`mailto:${social.email}`}
Expand Down

0 comments on commit f5b9ed4

Please sign in to comment.