2019-11-19 01:41:08 +03:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
|
|
|
|
export default class ContactTile extends Component {
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { props } = this;
|
|
|
|
|
|
|
|
return (
|
2019-11-23 06:37:01 +03:00
|
|
|
<div className="w-100 h-100 relative" style={{ background: "#286E55" }}>
|
|
|
|
<a className="w-100 h-100 db pa2 no-underline" href="/~contacts">
|
|
|
|
<p
|
|
|
|
className="white label-regular b absolute"
|
|
|
|
style={{ left: 8, top: 4 }}>
|
2019-11-19 01:41:08 +03:00
|
|
|
Contacts
|
|
|
|
</p>
|
2019-11-23 06:37:01 +03:00
|
|
|
<img
|
|
|
|
className="absolute"
|
|
|
|
style={{ left: 69, top: 69 }}
|
|
|
|
src="/~contacts/img/Tile.png"
|
|
|
|
width={96}
|
|
|
|
height={96}
|
|
|
|
/>
|
2019-11-19 01:41:08 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
window['contact-viewTile'] = ContactTile;
|