0.1.0 • Published 6 years ago

react-eth-address v0.1.0

Weekly downloads
12
License
MIT
Repository
github
Last release
6 years ago

react-eth-address

A React component to display eth addresses in a compact way and easily copy to clipboard

Installation

npm install react-eth-address

Usage

import React from 'react';
import EthAddress from 'react-eth-address';

React.render(
  <EthAddress address="0x06012c8cf97bead5deae237070f9587f8e7a266d" />,
  mountNode
);

Available Props

proptypedescriptiondefault value
addressstring
etherscanboolenable link to etherscanfalse
compactboolenable compact mode (first 4 and last 4 characters)true
classNamestringAdd extra css classestrue

Custom Styles

Add extra classes using the className prop for custom styling

Demo

demo