Skip to content

Commit 4b2507b

Browse files
authored
Merge pull request #120 from DanGould/bull
Add Bull Bitcoin logo
2 parents 84f9da6 + 7ee7b2b commit 4b2507b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/components/UsedBy/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import Marquee from "react-fast-marquee";
22
import styles from"./styles.module.css";
33

4-
const WalletLogo = ({ href, src, alt, text }) => (
5-
<a href={href} className="flex items-center gap-3 mx-10 no-underline hover:no-underline">
6-
<img className={styles.logoImg} src={src} alt={alt} />
4+
const WalletLogo = ({ href, src, alt, text, scale = 1, mx = 10 }) => (
5+
<a href={href} className={`flex items-center gap-3 no-underline hover:no-underline`} style={{ marginLeft: `${mx * 4}px`, marginRight: `${mx * 4}px` }}>
6+
<img className={styles.logoImg} src={src} alt={alt} style={{ transform: `scale(${scale})` }} />
77
{text && <span className={styles.logoText} style={{ textDecoration: 'none' }}>{text}</span>}
88
</a>
99
);
@@ -23,6 +23,7 @@ export default function WalletsUsingPayjoin() {
2323
<WalletLogo href="https://bluewallet.io" src="/img/bluewallet.svg" alt="bluewallet logo" />
2424
<WalletLogo href="https://btcpayserver.org" src="/img/btcpay.svg" alt="btcpayserver logo" />
2525
<WalletLogo href="https://cakewallet.com" src="/img/cakewallet.svg" alt="Cake Wallet logo" />
26+
<WalletLogo href="https://wallet.bullbitcoin.com" src="/img/bullbitcoin.png" alt="Bull Bitcoin logo" scale={2.6} mx={28} />
2627
<WalletLogo href="https://github.com/JoinMarket-Org/joinmarket-clientserver" src="/img/joinmarket.png" alt="joinmarket logo" />
2728
<WalletLogo href="https://sparrowwallet.com" src="/img/sparrow.png" alt="sparrow logo" text="Sparrow Wallet" />
2829
<WalletLogo href="https://wasabiwallet.io" src="/img/wasabi.svg" alt="wasabi logo" />

static/img/bullbitcoin.png

116 KB
Loading

0 commit comments

Comments
 (0)