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 (
|
2020-02-22 05:58:02 +03:00
|
|
|
<div className={"w-100 h-100 relative bg-white bg-gray0-d " +
|
|
|
|
"b--black b--gray1-d ba"}>
|
2020-02-06 02:16:56 +03:00
|
|
|
<a className="w-100 h-100 db pa2 bn" href="/~contacts">
|
2019-11-23 06:37:01 +03:00
|
|
|
<p
|
2020-02-22 05:58:02 +03:00
|
|
|
className="black white-d absolute f9"
|
2020-02-06 02:16:56 +03:00
|
|
|
style={{ left: 8, top: 8 }}>
|
2019-11-19 01:41:08 +03:00
|
|
|
Contacts
|
|
|
|
</p>
|
2019-11-23 06:37:01 +03:00
|
|
|
<img
|
2020-02-22 05:58:02 +03:00
|
|
|
className="absolute invert-d"
|
2020-02-06 02:16:56 +03:00
|
|
|
style={{ left: 39, top: 39 }}
|
2019-11-23 06:37:01 +03:00
|
|
|
src="/~contacts/img/Tile.png"
|
2020-02-06 02:16:56 +03:00
|
|
|
width={48}
|
|
|
|
height={48}
|
2019-11-23 06:37:01 +03:00
|
|
|
/>
|
2019-11-19 01:41:08 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
window['contact-viewTile'] = ContactTile;
|