import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';

const GooglePlus = (props) => {
    const {
        width = Icon40PropValues.width,
        height = Icon40PropValues.height,
        fill = Icon40PropValues.fill,
        ...restProps
    } = props;

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 24 24"
            width={width}
            height={height}
            {...restProps}
            fill="none"
        >
            <path
                fill={fill}
                stroke="none"
                d="M7.945 11.05v2.395h4c-.155 1.045-1.2 3.03-3.97 3.03a4.43 4.43 0 0 1-4.43-4.43 4.43 4.43 0 0 1 4.43-4.43 4 4 0 0 1 2.8 1.07l1.91-1.835a6.66 6.66 0 0 0-4.71-1.8A7 7 0 0 0 .96 12.035a7 7 0 0 0 6.985 7.015c4.045 0 6.72-2.85 6.72-6.845 0-.385-.035-.775-.1-1.155zM22.96 11.05h-2v-2h-2v2h-2v2h2v2h2v-2h2z"
            />
        </svg>
    );
};

GooglePlus.propTypes = {
    width: PropTypes.string,
    height: PropTypes.string,
    fill: PropTypes.string,
    stroke: PropTypes.string,
};
export default GooglePlus;
