diff --git a/.changeset/eager-walls-tease.md b/.changeset/eager-walls-tease.md
new file mode 100644
index 000000000..73dd5a393
--- /dev/null
+++ b/.changeset/eager-walls-tease.md
@@ -0,0 +1,13 @@
+---
+'@reown/appkit-react-native': patch
+'@reown/appkit-ui-react-native': patch
+'@reown/appkit-bitcoin-react-native': patch
+'@reown/appkit-coinbase-react-native': patch
+'@reown/appkit-common-react-native': patch
+'@reown/appkit-core-react-native': patch
+'@reown/appkit-ethers-react-native': patch
+'@reown/appkit-solana-react-native': patch
+'@reown/appkit-wagmi-react-native': patch
+---
+
+chore: round logo from qr code + added borderWidth 0 to card component
diff --git a/packages/appkit/src/modal/w3m-modal/styles.ts b/packages/appkit/src/modal/w3m-modal/styles.ts
index f7109eb1a..041a7131d 100644
--- a/packages/appkit/src/modal/w3m-modal/styles.ts
+++ b/packages/appkit/src/modal/w3m-modal/styles.ts
@@ -3,6 +3,7 @@ import { StyleSheet } from 'react-native';
export default StyleSheet.create({
card: {
borderBottomLeftRadius: 0,
- borderBottomRightRadius: 0
+ borderBottomRightRadius: 0,
+ borderWidth: 0
}
});
diff --git a/packages/appkit/src/partials/w3m-connecting-qrcode/index.tsx b/packages/appkit/src/partials/w3m-connecting-qrcode/index.tsx
index c82eb4389..b2ef67a57 100644
--- a/packages/appkit/src/partials/w3m-connecting-qrcode/index.tsx
+++ b/packages/appkit/src/partials/w3m-connecting-qrcode/index.tsx
@@ -20,6 +20,9 @@ import styles from './styles';
import { ReownButton } from './components/ReownButton';
import { useWindowDimensions } from 'react-native';
+const LOGO_SIZE = 60;
+const LOGO_BORDER_RADIUS = 10;
+
export function ConnectingQrCode() {
const { height, width } = useWindowDimensions();
const windowSize = Math.min(height, width);
@@ -65,7 +68,13 @@ export function ConnectingQrCode() {
flexDirection={isPortrait ? 'column' : 'row'}
padding={['xl', 'xl', 'xs', 'xl']}
>
-
+
Scan this QR code with your phone
{showCopy ? (
diff --git a/packages/ui/src/assets/svg/WalletConnect.tsx b/packages/ui/src/assets/svg/WalletConnect.tsx
index d8884b3b2..d3be9f9f6 100644
--- a/packages/ui/src/assets/svg/WalletConnect.tsx
+++ b/packages/ui/src/assets/svg/WalletConnect.tsx
@@ -1,14 +1,13 @@
import Svg, { ClipPath, Defs, G, Path, type SvgProps } from 'react-native-svg';
const SvgWalletConnect = (props: SvgProps) => (
-