Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 7b2c639

Browse files
committed
fix(examples): remove malformed icon from connect prompt
Remove unnecessary SVG icon from the wallet connection prompt to create a cleaner, text-only interface. The icon was not adding value and didn't look right anyway.
1 parent dcbc5c9 commit 7b2c639

File tree

3 files changed

+0
-24
lines changed

3 files changed

+0
-24
lines changed

examples/react-css-only/src/App.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,6 @@ body {
134134
margin-bottom: 2rem;
135135
}
136136

137-
.connect-icon {
138-
margin-bottom: 1rem;
139-
}
140-
141137
.connect-svg {
142138
width: 3rem;
143139
height: 3rem;

examples/react-css-only/src/components/WalletInfo.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ export function WalletInfo() {
1010
if (!activeAddress) {
1111
return (
1212
<div className="connect-prompt">
13-
<div className="connect-icon">
14-
<svg viewBox="0 0 24 24" className="connect-svg">
15-
<path d="M12 15v2m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z" />
16-
</svg>
17-
</div>
1813
<h3 className="connect-title">Connect Your Wallet</h3>
1914
<p className="connect-description">
2015
Connect your Algorand wallet to view your NFD profile and balance

examples/react/src/components/WalletInfo.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,6 @@ export function WalletInfo() {
1010
if (!activeAddress) {
1111
return (
1212
<div className="text-center p-8 bg-gray-50 dark:bg-gray-800/50 rounded-xl border border-gray-100 dark:border-gray-700">
13-
<div className="mb-4">
14-
<svg
15-
className="w-12 h-12 mx-auto text-gray-400"
16-
fill="none"
17-
stroke="currentColor"
18-
viewBox="0 0 24 24"
19-
>
20-
<path
21-
strokeLinecap="round"
22-
strokeLinejoin="round"
23-
strokeWidth="2"
24-
d="M12 15v2m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z"
25-
/>
26-
</svg>
27-
</div>
2813
<h3 className="text-lg font-medium text-gray-900 dark:text-white mb-2">
2914
Connect Your Wallet
3015
</h3>

0 commit comments

Comments
 (0)