diff --git a/src/features/ui/components/modals/zap-invoice.tsx b/src/features/ui/components/modals/zap-invoice.tsx index 7592fc18d..e416f3eae 100644 --- a/src/features/ui/components/modals/zap-invoice.tsx +++ b/src/features/ui/components/modals/zap-invoice.tsx @@ -4,11 +4,14 @@ import { FormattedMessage, defineMessages, useIntl } from 'react-intl'; import { closeModal } from 'soapbox/actions/modals'; import CopyableInput from 'soapbox/components/copyable-input'; -import { Modal, Button, Stack } from 'soapbox/components/ui'; +import { Modal, Button, Stack, Avatar } from 'soapbox/components/ui'; +import IconButton from 'soapbox/components/ui/icon-button/icon-button'; import { useAppDispatch } from 'soapbox/hooks'; import type { Account as AccountEntity } from 'soapbox/types/entities'; +const closeIcon = require('@tabler/icons/outline/x.svg'); + const messages = defineMessages({ zap_open_wallet: { id: 'zap.open_wallet', defaultMessage: 'Open Wallet' }, }); @@ -32,9 +35,15 @@ const ZapInvoiceModal: React.FC = ({ account, invoice, onClose }) = return ; }; + return ( - - + + + +

+ {renderTitle()} +

+