Skip to content

Commit

Permalink
add gpay and apple pay (#1133)
Browse files Browse the repository at this point in the history
* add gpay and apple pay

* cleanup

* format
  • Loading branch information
facing-n authored Oct 25, 2023
1 parent f26e125 commit 728017a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions js/sdk/src/components/CoinflowModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { logEvent } from '../utils/event'
import {
faCcVisa,
faCcMastercard,
faCcAmex,
faCcDiscover,
faCcApplePay,
faGooglePay,
} from '@fortawesome/free-brands-svg-icons'

const CoinflowModal = ({ release, releasePubkey, onSuccess }) => {
Expand Down Expand Up @@ -77,9 +77,12 @@ const CoinflowModal = ({ release, releasePubkey, onSuccess }) => {
icon={faCcDiscover}
style={{ paddingRight: '8px' }}
/>
<FontAwesomeIcon icon={faCcAmex} style={{ paddingRight: '8px' }} />
<FontAwesomeIcon
icon={faCcMastercard}
icon={faCcApplePay}
style={{ paddingRight: '8px' }}
/>
<FontAwesomeIcon
icon={faGooglePay}
style={{ paddingRight: '8px' }}
/>
</StyledCcContainter>
Expand Down

2 comments on commit 728017a

@vercel
Copy link

@vercel vercel bot commented on 728017a Oct 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 728017a Oct 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.