mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 11:12:00 +10:00
25 lines
439 B
JavaScript
25 lines
439 B
JavaScript
import {
|
|
FaGlobeAmericas,
|
|
FaFacebookF,
|
|
FaTwitter,
|
|
FaLinkedinIn,
|
|
FaGithub,
|
|
FaDribbble,
|
|
FaInstagram,
|
|
} from 'react-icons/fa';
|
|
import { MdPhone, MdEmail } from 'react-icons/md';
|
|
|
|
const Icons = {
|
|
phone: MdPhone,
|
|
website: FaGlobeAmericas,
|
|
email: MdEmail,
|
|
facebook: FaFacebookF,
|
|
twitter: FaTwitter,
|
|
linkedin: FaLinkedinIn,
|
|
github: FaGithub,
|
|
dribbble: FaDribbble,
|
|
instagram: FaInstagram,
|
|
};
|
|
|
|
export default Icons;
|