Skip to content

Commit

Permalink
Refactor About component to use IoMdHeartEmpty icon for likes
Browse files Browse the repository at this point in the history
  • Loading branch information
chimpdev committed May 3, 2024
1 parent fd1765c commit 8fa2c65
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { MdOutlineMale, MdOutlineFemale } from 'react-icons/md';
import { LiaBirthdayCakeSolid } from 'react-icons/lia';
import { FaGenderless } from 'react-icons/fa';
import { BsEye, BsGeoAlt, BsHeartFill, BsSuitcaseLg } from 'react-icons/bs';
import { BsEye, BsGeoAlt, BsSuitcaseLg } from 'react-icons/bs';
import { motion } from 'framer-motion';
import { IoMdHeartEmpty } from 'react-icons/io';

export default function About({ profile }) {
const keys = [
Expand Down Expand Up @@ -39,7 +40,7 @@ export default function About({ profile }) {
{
key: 'likes',
label: 'Likes',
icon: <BsHeartFill />,
icon: <IoMdHeartEmpty />,
value: profile.likes
}
];
Expand Down

0 comments on commit 8fa2c65

Please sign in to comment.