import React from "react"; import PropTypes from "prop-types"; import equal from "fast-deep-equal/react"; import Text from "../text"; import StyledSocialButton from "./styled-social-button"; import { ReactSVG } from "react-svg"; // eslint-disable-next-line no-unused-vars class SocialButton extends React.Component { shouldComponentUpdate(nextProps) { return !equal(this.props, nextProps); } render() { const { label, iconName, ...otherProps } = this.props; return ( {label && ( {label} )} ); } } SocialButton.propTypes = { /** Button text */ label: PropTypes.string, /** Icon of button */ iconName: PropTypes.string, /** Accepts tabindex prop*/ tabIndex: PropTypes.number, /** Tells when the button should present a disabled state */ isDisabled: PropTypes.bool, /** Accepts class */ className: PropTypes.string, /** Accepts id */ id: PropTypes.string, /** Accepts css style */ style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), onClick: PropTypes.func, iconOptions: PropTypes.object, }; SocialButton.defaultProps = { label: "", iconName: "SocialButtonGoogleIcon", tabIndex: -1, isDisabled: false, iconOptions: {}, }; export default SocialButton;