A highly customizable and lightweight QR code generator for React applications.
🚀 Live Demo: reactqrcode.com/demo
📖 Documentation: reactqrcode.com
- Highly Customizable - Style the finder patterns, modules, and colors exactly how you want.
- Performance Optimized - Generates QR codes efficiently without sacrificing quality.
- SVG-Based Rendering - Crisp and scalable output for web and print
- Developer-Friendly - Built with TypeScript, easy to use, and well-documented.
pnpm add @lglab/react-qr-code
or
npm i @lglab/react-qr-code
or
yarn add @lglab/react-qr-code
or
bun add @lglab/react-qr-code
import { ReactQRCode } from '@lglab/react-qr-code'
const Page = () => {
return (
<ReactQRCode value='https://reactqrcode.com' />
);
}