react-google-recaptcha
react-google-recaptcha copied to clipboard
White background under reCAPTCHA
react-google-recaptcha version: 2.1.0
Although there is no div around my reCAPTCHA, there is a weird white background around it. Does anyone know what may be causing this problem and how to avoid it?

This was bothering me as well. I realised that you can pass a style prop with some options to make it look better:
<ReCAPTCHA
theme="dark"
style={{
width: 302,
height: 76,
borderRadius: 3,
overflow: "hidden",
}}
/>
Thank you! This solves it =)