QR Code web-component demo

Sample web-component made with Stencil

Fork me on GitHub

DataURI QR Code

<qr-code
  contents="Hello World"
  output-mode="DataURI"
  style="width: 100px;height: 100px;">
</qr-code>

SVG QR Code

<qr-code
  class="with-rounded-corners"
  contents="Hello World"
  output-mode="SVG"
  style="width: 100px;height: 100px;">
</qr-code>

Table QR Code

<qr-code
  contents="Hello World"
  output-mode="Table"
  style="width: 100px;height: 100px;">
</qr-code>