ReCaptcha.js 504 B

1234567891011121314151617181920212223242526
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. const Recaptcha = styled.div`
  4. display: flex;
  5. margin: 54px 0 16px;
  6. `;
  7. const ReCaptcha = () => {
  8. if (process.env.NODE_ENV !== 'production') {
  9. return null;
  10. }
  11. return (
  12. <Recaptcha
  13. id="g-recaptcha"
  14. className="g-recaptcha"
  15. data-sitekey={process.env.RECAPTCHA_SITE_KEY}
  16. data-callback="recaptchaCallback"
  17. data-size="invisible"
  18. data-badge="inline"
  19. />
  20. );
  21. };
  22. export default ReCaptcha;