From b2ac0f071cfa4e959a5bc40b0cec9537829feccb Mon Sep 17 00:00:00 2001 From: im-adithya Date: Mon, 22 Dec 2025 19:44:39 +0530 Subject: [PATCH] fix: qr code border radius --- components/QRCode.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/QRCode.tsx b/components/QRCode.tsx index 8d2535f..854b6c1 100644 --- a/components/QRCode.tsx +++ b/components/QRCode.tsx @@ -36,17 +36,17 @@ function QRCode({ pieceBorderRadius={"50%"} outerEyesOptions={{ topLeft: { - borderRadius: ["30%", "30%", "30%", "30%"], + borderRadius: ["24%", "24%", "24%", "24%"], }, topRight: { - borderRadius: ["30%", "30%", "30%", "30%"], + borderRadius: ["24%", "24%", "24%", "24%"], }, bottomLeft: { - borderRadius: ["30%", "30%", "30%", "30%"], + borderRadius: ["24%", "24%", "24%", "24%"], }, }} innerEyesOptions={{ - borderRadius: ["30%", "30%", "30%", "30%"], + borderRadius: ["20%", "20%", "20%", "20%"], }} />