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 ( + + + + + + + + ) +}