JSFiddle - React, Tailwind, and code Playground
by Weston Ruter
HTML
<script>
customElements.define('bigger-img', class extends Image {
// Give img default size if users don't specify.
constructor(width=50, height=50) {
super(width * 10, height * 10);
}
}, {extends: 'img'});
</script>
<!-- This <img> is a bigger img. -->
<img is="bigger-img" width="175" height="60">