From 31753873e52905f2258c602ea22e32552b3d2ae0 Mon Sep 17 00:00:00 2001 From: secondl1ght <85003930+secondl1ght@users.noreply.github.com> Date: Tue, 2 Nov 2021 21:00:06 -0600 Subject: [PATCH 01/10] Add logos to new account screen --- src/app/components/LinkButton/index.tsx | 14 ++++++++++++-- .../screens/Onboard/ChooseConnector/index.tsx | 18 ++++++++++++++++-- src/custom.d.ts | 5 +++++ static/assets/icons/alby.png | Bin 0 -> 12767 bytes static/assets/icons/lnbits.png | Bin 0 -> 6540 bytes static/assets/icons/lnd.png | Bin 0 -> 2822 bytes static/assets/icons/lndhub.png | Bin 0 -> 3180 bytes 7 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 static/assets/icons/alby.png create mode 100644 static/assets/icons/lnbits.png create mode 100644 static/assets/icons/lnd.png create mode 100644 static/assets/icons/lndhub.png diff --git a/src/app/components/LinkButton/index.tsx b/src/app/components/LinkButton/index.tsx index 29fd8278b1..aff027904d 100644 --- a/src/app/components/LinkButton/index.tsx +++ b/src/app/components/LinkButton/index.tsx @@ -6,9 +6,10 @@ type Props = { to: string; title: string; description?: string; + logo?: string; }; -export default function LinkButton({ to, title, description }: Props) { +export default function LinkButton({ to, title, description, logo }: Props) { return (
@@ -18,7 +19,16 @@ export default function LinkButton({ to, title, description }: Props) { {description} )}
-