Last active
September 12, 2021 10:20
-
-
Save eaccmk/c21a4f9fa18e477a2cffeabc4bfa6ee2 to your computer and use it in GitHub Desktop.
Fitbit app companion (mobile) setting to demo images with test area such as paypal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
// ref Official : https://www.paypal.com/us/webapps/mpp/logo-center | |
//const PP_LOGO = 'https://www.paypalobjects.com/webstatic/mktg/logo/pp_cc_mark_74x46.jpg' | |
//you may also pick one from https://www.flaticon.com/free-icons/paypal | |
const PP_LOGO = "https://cdn-icons-png.flaticon.com/512/888/888871.png"; | |
//replace with your personalised link | |
const PAYPAL_ME_LINK = "https://www.paypal.com/au/webapps/mpp/paypal-me"; | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Section | |
title={ | |
<Text bold align="center"> | |
Donate ❤ | |
</Text> | |
} | |
> | |
<TextImageRow | |
label="Using PayPal" | |
sublabel={<Link source={PAYPAL_ME_LINK}>click here</Link>} | |
icon={PP_LOGO} | |
/> | |
</Section> | |
</Page> | |
); | |
} | |
registerSettingsPage(mySettings); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment