All files index.jsx

77.78% Statements 7/9
25% Branches 3/12
50% Functions 1/2
77.78% Lines 7/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43    1x         1x 1x 1x   1x   1x                                   1x                      
import React from 'react'
 
export const renderDefaultButton = ({ width, disabled, text, backgroundColor, className, onClickFunc }) => {
 
    //const { buttonText, backgroundColor } = this.props;
    //const disabled = this.props.disabled;
 
    const func = disabled ? null : onClickFunc
    let style = backgroundColor ? { backgroundColor: backgroundColor } : {}
    style = width ?  {...style,width} : style
 
    const classNameTmp = `react-google-oauth-button-main ${className}`
 
    return <div onClick={func} style={style} className={classNameTmp} >
        <div className="react-google-oauth-button-border">
            <div className="react-google-oauth-button-iconWrapper">
                <div className="react-google-oauth-button-icon">
                    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="18px" height="18px"
                        viewBox="0 0 48 48" ><g>
                            <path fill="#EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"></path>
                            <path fill="#4285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"></path>
                            <path fill="#FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"></path>
                            <path fill="#34A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"></path>
                            <path fill="none" d="M0 0h48v48H0z"></path></g></svg>
                </div>
            </div>
            <span className="react-google-oauth-button-span">{text}</span>
        </div>
    </div>
}
 
export const renderCustomDefaultButton = ({ tag, className, text, disabled, children, onClickFunc }) => {
    
    const Tag = tag
 
    return tag === "a" ?
      <Tag href="javacript:void(0)" onClick={onClickFunc} disabled={disabled} className={className} >
        {children ? children : text}
      </Tag>
      : <Tag onClick={onClickFunc} disabled={disabled} className={className} >
        {children ? children : text}
      </Tag>
}