import React from 'react'
import Svg, { Path } from 'react-native-svg'

import { SvgIconProps } from '../components/SvgIcon'

function Apple(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={23} height={28} viewBox="0 0 23 28" {...props}>
      <Path
        d="M15.759 4.675C17.425 2.586 17.272.684 17.223 0c-1.47.09-3.173 1.058-4.143 2.25-1.068 1.278-1.696 2.857-1.562 4.637 1.593.13 3.045-.735 4.24-2.212zM7.43 27.6c1.54-.037 2.628-1.087 4.632-1.087 1.943 0 2.952 1.087 4.669 1.087 2.97-.043 5.524-5.01 6.269-7.245-3.984-1.865-3.77-5.466-3.77-5.581-.012-2.23 1.002-3.911 3.055-5.15-1.149-1.634-2.884-2.533-5.176-2.709-2.169-.17-4.54 1.257-5.407 1.257-.917 0-3.019-1.196-4.669-1.196C3.623 7.029 0 9.677 0 15.065c0 1.59.293 3.234.88 4.93.782 2.23 3.605 7.695 6.55 7.604z"
        fill={props.fill ?? '#475060'}
        fillRule="nonzero"
      />
    </Svg>
  )
}

export default Apple
