You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
845 B
33 lines
845 B
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { FaCircle } from 'react-icons/lib/fa'
|
|
import { btc } from 'utils'
|
|
import styles from './Contact.scss'
|
|
|
|
const OnlineContact = ({ channel }) => (
|
|
<li className={styles.friend} key={channel.chan_id}>
|
|
<section className={styles.info}>
|
|
<p className={styles.online}>
|
|
<FaCircle style={{ verticalAlign: 'top' }} />
|
|
<span>Online</span>
|
|
</p>
|
|
<h2>{channel.remote_pubkey}</h2>
|
|
</section>
|
|
<section className={styles.limits}>
|
|
<div>
|
|
<h4>Can Pay</h4>
|
|
<p>{btc.satoshisToBtc(channel.local_balance)}BTC</p>
|
|
</div>
|
|
<div>
|
|
<h4>Can Receive</h4>
|
|
<p>{btc.satoshisToBtc(channel.remote_balance)}BTC</p>
|
|
</div>
|
|
</section>
|
|
</li>
|
|
)
|
|
|
|
OnlineContact.propTypes = {
|
|
|
|
}
|
|
|
|
export default OnlineContact
|
|
|