aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/identicon.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-05 16:48:52 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-06 15:36:31 +0800
commit06b2a04a4259a0bc7dff4004328441d353c296de (patch)
tree3ecb23718c23f244f3216b8f82dc3dc0c7e9e014 /ui/app/components/identicon.js
parent562d2fadaed93946bce8e5f306d1a2e271e971c7 (diff)
downloadtangerine-wallet-browser-06b2a04a4259a0bc7dff4004328441d353c296de.tar.gz
tangerine-wallet-browser-06b2a04a4259a0bc7dff4004328441d353c296de.tar.zst
tangerine-wallet-browser-06b2a04a4259a0bc7dff4004328441d353c296de.zip
Implement tokens list UI
Diffstat (limited to 'ui/app/components/identicon.js')
-rw-r--r--ui/app/components/identicon.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js
index 98d5d40ef..71831fe71 100644
--- a/ui/app/components/identicon.js
+++ b/ui/app/components/identicon.js
@@ -18,9 +18,11 @@ function IdenticonComponent () {
IdenticonComponent.prototype.render = function () {
var props = this.props
+ const { className = '' } = props
var diameter = props.diameter || this.defaultDiameter
return (
- h('div.identicon', {
+ h('div', {
+ className: `${className} identicon`,
key: 'identicon-' + this.props.address,
style: {
display: 'flex',