# blockenberg/2.0.7/blocks/qr-code/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 96 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/qr-code/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/qr-code/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/qr-code/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "name": "blockenberg/qr-code",
    "title": "QR Code",
    "category": "bkbg-dev",
    "icon": "screenoptions",
    "description": "Generate a QR code from any URL or text with custom colors and size.",
    "keywords": [
        "qr",
        "qrcode",
        "barcode",
        "link",
        "scan"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-qr-code-editor",
    "editorStyle": "bkbg-qr-code-style",
    "style": "bkbg-qr-code-style",
    "viewScript": "bkbg-qr-code-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true
    },
    "attributes": {
        "content": {
            "type": "string",
            "default": "https://example.com"
        },
        "size": {
            "type": "number",
            "default": 200
        },
        "fgColor": {
            "type": "string",
            "default": "#1f2937"
        },
        "bgColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "errorLevel": {
            "type": "string",
            "default": "M"
        },
        "caption": {
            "type": "string",
            "default": ""
        },
        "showCaption": {
            "type": "boolean",
            "default": false
        },
        "captionColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "captionTypo": {
            "type": "object",
            "default": {}
        },
        "align": {
            "type": "string",
            "default": "center"
        },
        "cardBg": {
            "type": "string",
            "default": "#ffffff"
        },
        "cardPadding": {
            "type": "number",
            "default": 20
        },
        "borderRadius": {
            "type": "number",
            "default": 12
        },
        "borderStyle": {
            "type": "string",
            "default": "shadow"
        },
        "borderColor": {
            "type": "string",
            "default": "#e5e7eb"
        },
        "downloadable": {
            "type": "boolean",
            "default": true
        },
        "downloadLabel": {
            "type": "string",
            "default": "Download QR"
        },
    }
}

```
