Files
pezkuwi-ui/packages/vue-identicon
pezkuwichain 7afaaafd56 feat: update ui-settings to use dark/light theme values
- Change UITHEME_DEFAULT from 'polkadot'/'substrate' to 'light'
- Update UITHEMES options to use 'dark'/'light' values
- Update ICONS to use 'pezkuwi'/'bizinikiwi' branding
- Add isPezkuwi check for domain detection
- Bump ui-settings version to 3.16.9
2026-01-07 19:22:05 +03:00
..
2026-01-07 02:35:24 +03:00
2026-01-07 02:35:24 +03:00

@pezkuwi/vue-identicon

A generic identity icon that can render icons based on an address.

Usage Examples

To install the component, do yarn add @pezkuwi/vue-identicon and then use it with import Identicon from '@pezkuwi/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 display
  • size (optional, defaults to 64) - the size in pixels
  • theme (optional, defaults to substrate) - the theme to use, one of
    • polkadot or
    • substrate (equivalent to jdenticon) or
    • beachball or
    • empty (displays nothing)
<template>
  <Identicon
    :size="128"
    :theme="'polkadot'"
    :value="'5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'"
  />
</template>

<script>
  import Identicon from '@pezkuwi/vue-identicon';

  export default {
    ...
    components: { Identicon }
    ...
  };
</script>