From bdce59722a35994dec13c737b953bd3713903315 Mon Sep 17 00:00:00 2001 From: DanGould Date: Mon, 22 Jul 2024 13:29:26 -0400 Subject: [PATCH] Fix WalletLogo in UsedBy --- src/components/UsedBy/index.tsx | 58 ++++++------------------- src/components/UsedBy/styles.module.css | 2 +- 2 files changed, 15 insertions(+), 45 deletions(-) diff --git a/src/components/UsedBy/index.tsx b/src/components/UsedBy/index.tsx index 2e4a22c..5e4d0ae 100644 --- a/src/components/UsedBy/index.tsx +++ b/src/components/UsedBy/index.tsx @@ -1,61 +1,31 @@ import Marquee from "react-fast-marquee"; -import "./styles.module.css"; +import styles from"./styles.module.css"; + +const WalletLogo = ({ href, src, alt }) => ( + + {alt} + +); export default function WalletsUsingPayjoin() { return (

Wallets Using Payjoin

-
- - Mutinywallet Logo - - - bitmasklogo - - - bluewallet logo - - - btcpayserver logo - - - joinmarket logo - - - sparrow logo - - - wasabi logo - + + + + + + + - {/*
- - - -
*/}
If you are a developer seeking to enhance your wallet with Payjoin, check out Payjoin Dev kit diff --git a/src/components/UsedBy/styles.module.css b/src/components/UsedBy/styles.module.css index fdf935f..2ef24dd 100644 --- a/src/components/UsedBy/styles.module.css +++ b/src/components/UsedBy/styles.module.css @@ -1,4 +1,4 @@ -img { +.logo { @apply mx-10; height: 8vh; }