Custom Avatar Generator

by maidi

HTML

<script type="module" src="https://unpkg.com/[email protected]"></script>
<custom-avatar-generator 
                         shape="square"
                         enable-background="true"
                         display-download="false" 
                         texts='{"everything":"EVERYTHING","allColors":"All colors","background":"Background","skin":"Skin","hair":"Hair","hairStyle":"Hair Style","accessory":"Accessory","clothes":"Clothes","clothing":"Clothing","print":"Print","download":"Download"}'>
</custom-avatar-generator>

JavaScript

const el = document.querySelector('custom-avatar-generator');
el.addEventListener('svgUrl', (event) => console.log(event.detail));