import * as React from 'react'
import Svg, { G, Path } from 'react-native-svg'
import { SvgIconProps } from '../components/SvgIcon'

function SocialNodes(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={48} height={48} viewBox="0 0 48 48">
      <G
        stroke={props.tintColor}
        strokeWidth={2}
        fill="none"
        fillRule="evenodd"
      >
        <Path
          strokeLinecap="square"
          d="M26.148 17.266L16.74 21.8M26.021 30.66l-9.499-4.588"
        />
        <Path
          d="M13 20c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4zM30 28c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4zM30 12c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4z"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </G>
    </Svg>
  )
}

export default SocialNodes
