{ showURL &&
diff --git a/client/modules/User/components/SocialAuthButton.jsx b/client/modules/User/components/SocialAuthButton.jsx
index c3c5dd74..c0539eb6 100644
--- a/client/modules/User/components/SocialAuthButton.jsx
+++ b/client/modules/User/components/SocialAuthButton.jsx
@@ -2,10 +2,9 @@ import PropTypes from 'prop-types';
import React from 'react';
import styled from 'styled-components';
-import { remSize, prop } from '../../../theme';
+import { remSize } from '../../../theme';
import Button from '../../../common/Button';
-import Icon from '../../../common/Icon';
const authUrls = {
github: '/auth-github',
@@ -24,24 +23,15 @@ const services = {
const StyledButton = styled(Button)`
width: ${remSize(300)};
-
- > * + * {
- margin-left: ${remSize(10)};
- }
-`;
-
-const StyledIcon = styled(Icon)`
- width: ${remSize(32)};
- height: ${remSize(32)};
`;
function SocialAuthButton({ service }) {
return (
-
- {labels[service]}
+ {labels[service]}
);
}