import React from 'react'
import PropTypes from 'prop-types'

const IconSocialGithub = (props) => {
  const height = props.height || '48'
  const width = props.width || '48'

  return (
    <svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} viewBox="0 0 48 48">
      <path fillRule="evenodd" clip-rule="evenodd" fill="#191717" d="M23.998.593C10.746.593 0 11.338 0 24.594c0 10.603 6.876 19.598 16.414 22.772 1.2.22 1.638-.52 1.638-1.157 0-.57-.02-2.079-.032-4.082-6.676 1.45-8.085-3.217-8.085-3.217C8.844 36.138 7.27 35.4 7.27 35.4c-2.179-1.49.165-1.46.165-1.46 2.409.17 3.676 2.474 3.676 2.474 2.141 3.667 5.617 2.608 6.985 1.994.218-1.55.838-2.609 1.524-3.208-5.33-.606-10.932-2.665-10.932-11.862 0-2.62.935-4.762 2.47-6.44-.247-.607-1.07-3.047.235-6.352 0 0 2.015-.645 6.6 2.46 1.914-.532 3.967-.798 6.008-.807 2.038.01 4.092.275 6.009.808 4.582-3.106 6.593-2.46 6.593-2.46 1.31 3.304.486 5.744.239 6.35 1.538 1.679 2.467 3.821 2.467 6.441 0 9.22-5.611 11.249-10.958 11.843.862.74 1.63 2.206 1.63 4.444 0 3.209-.03 5.797-.03 6.584 0 .642.432 1.389 1.65 1.154C41.13 44.183 48 35.193 48 24.594 48 11.338 37.253.593 23.998.593z"/>
    </svg>
)
}

IconSocialGithub.propTypes = {
  height: PropTypes.number,
  width: PropTypes.number
}

export default IconSocialGithub