ReCaptcha.js 433 B

123456789101112131415161718192021
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. import config from '../../config';
  4. const Recaptcha = styled.div`
  5. display: flex;
  6. margin: 40px 0 16px;
  7. `;
  8. const ReCaptcha = () => (
  9. <Recaptcha
  10. id="g-recaptcha"
  11. className="g-recaptcha"
  12. data-sitekey={config.RECAPTCHA_SITE_KEY}
  13. data-callback="recaptchaCallback"
  14. data-size="invisible"
  15. data-badge="inline"
  16. />
  17. );
  18. export default ReCaptcha;