react-eth-address
v0.1.0
Published
Ethereum address React Component
Downloads
12
Readme
react-eth-address
A React component to display eth addresses in a compact way and easily copy to clipboard
Installation
npm install react-eth-addressUsage
import React from 'react';
import EthAddress from 'react-eth-address';
React.render(
<EthAddress address="0x06012c8cf97bead5deae237070f9587f8e7a266d" />,
mountNode
);Available Props
prop | type | description | default value
----------|----------------------|--------------|-----------
address | string | |
etherscan| bool | enable link to etherscan |false
compact| bool | enable compact mode (first 4 and last 4 characters) |true
className| string | Add extra css classes |true
Custom Styles
Add extra classes using the className prop for custom styling
Demo

