From ad61949bf0ab403bed240198a69b332910af53d1 Mon Sep 17 00:00:00 2001 From: Tymmmy <117268143+Tymmmy@users.noreply.github.com> Date: Sat, 31 Jan 2026 17:18:07 +0200 Subject: [PATCH] changes needed for frontend --- app/components/quoteDialog.tsx | 6 +++++- app/components/ui/logo.tsx | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/app/components/quoteDialog.tsx b/app/components/quoteDialog.tsx index cc5a8df..6cf26b5 100644 --- a/app/components/quoteDialog.tsx +++ b/app/components/quoteDialog.tsx @@ -8,6 +8,7 @@ import { Form } from '@remix-run/react' import { useForm } from '@conform-to/react' import { Loader } from './loader' import { useBackdropContext } from '~/lib/context/backdrop' +import { PayLogo } from './ui/logo' export type QuoteArgs = { receiverName: string @@ -63,7 +64,10 @@ export default function Quote({ leaveTo="opacity-0 translate-y-4" > -
+ {/*
*/} +
+ +
diff --git a/app/components/ui/logo.tsx b/app/components/ui/logo.tsx index 7f0dbaa..f7a6bb3 100644 --- a/app/components/ui/logo.tsx +++ b/app/components/ui/logo.tsx @@ -285,3 +285,36 @@ export const InterledgerPayLogo = (props: SVGProps) => { ) } +export const PayLogo = (props: SVGProps) => { + return ( + + + + + + + + ) +}