@axiasolar-js/vue-identicon
v1.1.0
Published
Renders an SVG picture representing an address
Downloads
1
Readme
@axiasolar-js/vue-identicon
A generic identity icon that can render icons based on an address.
Usage Examples
To install the component, do yarn add @axiasolar-js/vue-identicon
and then use it with import Identicon from '@axiasolar-js/vue-identicon';
Inside a Vue component, you can now render any account with the associated icon, with associated props -
value
- the address you wish to displaysize
(optional, defaults to64
) - the size in pixelstheme
(optional, defaults tosubstrate
) - the theme to use, one ofaxiasolar
orsubstrate
(equivalent tojdenticon
) orbeachball
orempty
(displays nothing)
<template>
<Identicon
:size="128"
:theme="'axiasolar'"
:value="'5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'"
/>
</template>
<script>
import Identicon from '@axiasolar-js/vue-identicon';
export default {
...
components: { Identicon }
...
};
</script>