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

function Amazon(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={52} height={52} viewBox="0 0 52 52" {...props}>
      <Path
        d="M31.127 34.463c.648.926 3.529 3.406 4.516 4.25l5.663-5.085s-3.22-2.298-3.22-4.795V15.474C38.085 13.176 35.642 8 26.89 8c-8.773 0-13.429 4.995-13.429 9.472l7.328.617c1.625-4.495 5.403-4.495 5.403-4.495 4.058-.009 3.54 2.706 3.54 6.275-4.856.164-16.899 1.408-16.899 10.671 0 9.944 13.788 10.353 18.294 3.923zm-10.321-5.16c0-4.376 5.464-5.257 9.11-5.359v3.765c0 7.417-9.11 6.304-9.11 1.594zm23.072 17.18c.556-.403 1.573-1.458 2.269-2.974.696-1.535 1.092-3.646.696-4.136-.535-.624-3.243-.72-4.924-.547-1.691.192-4.26 1.132-4.014 1.68.107.22.343.124 1.499.028 1.177-.105 4.442-.49 5.137.307.707.816-1.038 4.654-1.359 5.278-.321.623.107.796.696.364zM25.786 49c9.769 0 15.592-5.294 16.312-6.223.729-.929.187-1.458-.514-1.115-17.265 8.128-27.968 1.32-34.82-2.814-.42-.279-1.15.056-.514.77C8.54 42.359 16.018 49 25.786 49z"
        fill={props.fill ?? '#475060'}
        fillRule="nonzero"
      />
    </Svg>
  )
}

export default Amazon
