mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import React from "react"
|
|||
|
|
|
||
|
|
import { Content, Row, Col, Box } from "adminlte-2-react"
|
||
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
||
|
|
|
||
|
|
class Icons extends React.Component {
|
||
|
|
state = {}
|
||
|
|
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<Content>
|
||
|
|
<Row>
|
||
|
|
<Col sm={3} />
|
||
|
|
<Col sm={6}>
|
||
|
|
<Box className="hover-shadow border-none mt-2">
|
||
|
|
<Row>
|
||
|
|
<Col sm={12} className="text-center">
|
||
|
|
<h1>
|
||
|
|
<FontAwesomeIcon
|
||
|
|
className="title-icon"
|
||
|
|
size="xs"
|
||
|
|
icon={"plus"}
|
||
|
|
/>
|
||
|
|
<span>Upload your token icon</span>
|
||
|
|
</h1>
|
||
|
|
</Col>
|
||
|
|
<Col sm={12} className="text-center mt-2 mb-2">
|
||
|
|
<p>
|
||
|
|
You currently have 0 BCH. Go to the Portfolio page and
|
||
|
|
Create a Wallet. Then deposit some BCH to use the SLP Icons
|
||
|
|
tool. Get free BCH from the Bitcoin.com Faucet!
|
||
|
|
</p>
|
||
|
|
</Col>
|
||
|
|
</Row>
|
||
|
|
</Box>
|
||
|
|
</Col>
|
||
|
|
<Col sm={3} />
|
||
|
|
</Row>
|
||
|
|
</Content>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Icons
|