QR code generator with download.
import { QRCode } from "@/components/ui";<QRCode value="https://example.com" />Different QR code sizes
<div className="flex items-end gap-4"> <QRCode value="https://example.com" size={64} /> <QRCode value="https://example.com" size={128} /> <QRCode value="https://example.com" size={200} /></div>Enable download button
<QRCode value="https://example.com" size={200} download/>Different error correction levels
<div className="flex items-end gap-4"> <div className="text-center"> <QRCode value="https://example.com" errorCorrection="L" size={100} /> <span className="text-xs text-muted-foreground">Low</span> </div> <div className="text-center"> <QRCode value="https://example.com" errorCorrection="M" size={100} /> <span className="text-xs text-muted-foreground">Medium</span> </div> <div className="text-center"> <QRCode value="https://example.com" errorCorrection="H" size={100} /> <span className="text-xs text-muted-foreground">High</span> </div></div>Configure your app with the features you need and download production-ready code.
Start Configuring