UNPKG

zmp-qrcode

Version:

React component for generating QR Code that match Zalo Miniapps looks and feels.

9 lines (8 loc) 195 B
export interface QRCodeProps { value: string; size?: number; } export interface QRCodeInstance { canvas: HTMLCanvasElement; getBase64: (type?: 'png' | 'jpg') => string; }