mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 06:47:00 +10:00
31 lines
557 B
JavaScript
31 lines
557 B
JavaScript
import {
|
|
FaGlobeAmericas,
|
|
FaFacebookF,
|
|
FaTwitter,
|
|
FaLinkedinIn,
|
|
FaGithub,
|
|
FaDribbble,
|
|
FaInstagram,
|
|
FaStackOverflow,
|
|
FaBehance,
|
|
FaGitlab
|
|
} 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,
|
|
stackoverflow: FaStackOverflow,
|
|
behance: FaBehance,
|
|
gitlab: FaGitlab
|
|
};
|
|
|
|
export default Icons;
|