-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactInfo.jsx
21 lines (18 loc) · 1.1 KB
/
ContactInfo.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react';
import { Link } from 'react-router';
import Paper from 'material-ui/Paper';
import FontAwesome from 'react-fontawesome';
const iconStyle = { paddingLeft: 0, paddingRight: 8, paddingTop: 0, paddingBottom: 0 };
class ContactInfo extends React.Component {
render() {
return (<Paper style={{ padding: 16, marginTop: 16 }}>
<div style={{ display: 'inline-block', paddingRight: 20 }}>Contact:</div>
<FontAwesome name='phone' style={iconStyle} />+45 5050 3270
<div style={{ width: 30, display: 'inline-block' }} ></div>
<a href="mailto:[email protected]" style={{ color: 'inherit', textDecoration: 'inherit', cursor: 'pointer' }}><FontAwesome name='envelope' style={iconStyle} />[email protected]</a>
<div style={{ width: 30, display: 'inline-block' }} ></div>
<a href="https://github.com/kodedylf/react-cv" style={{ color: 'inherit', textDecoration: 'inherit', cursor: 'pointer' }}><FontAwesome name='github' style={iconStyle} />Github</a>
</Paper>);
}
};
export default ContactInfo;