QRCode

Components that can convert text into QR codes, and support custom color and logo.
Importimport{ QRCode }from"antd";
Versionsupported since 5.1.0

When To Use

Used when the text needs to be converted into a QR Code.

Examples

Basic Usage.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

QR code expired

Scanned

The status can be controlled by the value status, four values ​​of active, expired, loading, scanned are provided.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

Customize the rendering results by type, provide options canvas and svg.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

Custom Color.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

set Error Level.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

QRCode with Icon.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

Loading...

QR code expired

Scanned

You can control the rendering logic of the QR code in different states through the value of statusRender.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
5.20.0

Custom Size.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

A way to download QRCode.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

With Popover.

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

API

Common props ref:Common props

This component is available since antd@5.1.0

PropertyDescriptionTypeDefaultVersion
valuescanned textstring-
typerender typecanvas | svg canvas5.6.0
iconinclude image url (only image link are supported)string-
sizeQRCode sizenumber160
iconSizeinclude image sizenumber | { width: number; height: number }405.19.0
colorQRCode Colorstring#000
bgColorQRCode Background Colorstringtransparent5.5.0
borderedWhether has border stylebooleantrue
errorLevelError Code Level'L' | 'M' | 'Q' | 'H' M
statusQRCode statusactive | expired | loading | scannedactivescanned: 5.13.0
statusRendercustom status render(info: \[StatusRenderInfo](/components/qr-code-cn#statusrenderinfo)) => React.ReactNode5.20.0
onRefreshcallback() => void-

StatusRenderInfo

type StatusRenderInfo = {
status: QRStatus;
locale: Locale['QRCode'];
onRefresh?: () => void;
};

Design Token

Global TokenHow to use?

FAQ

About QRCode ErrorLevel

The ErrorLevel means that the QR code can be scanned normally after being blocked, and the maximum area that can be blocked is the error correction rate.

Generally, the QR code is divided into 4 error correction levels: Level L can correct about 7% errors, Level M can correct about 15% errors, Level Q can correct about 25% errors, and Level H can correct about 30% errors. When the content encoding of the QR code carries less information, in other words, when the value link is short, set different error correction levels, and the generated image will not change.

For more information, see the: https://www.qrcode.com/en/about/error_correction

⚠️⚠️⚠️ Cannot scan the QR code?

If the QR code cannot be scanned for identification, it may be because the link address is too long, which leads to too dense pixels.

You can configure the QR code to be larger through size, or shorten the link through short link services.