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

function MusicNote(props: SvgIconProps): React.ReactElement {
  const size = props.size ?? 48
  return (
    <Svg width={size} height={size} viewBox="0 0 48 48">
      <G
        stroke={props.tintColor}
        strokeWidth={2}
        fill="none"
        fillRule="evenodd"
        strokeLinecap="round"
        strokeLinejoin="round"
      >
        <Path d="M15 31.148c2.208 0 4 1.793 4 4 0 2.208-1.792 4-4 4s-4-1.792-4-4c0-2.207 1.792-4 4-4zM34 25.148c2.208 0 4 1.793 4 4 0 2.208-1.792 4-4 4s-4-1.792-4-4c0-2.207 1.792-4 4-4zM19 22.148l18-6" />
        <Path d="M19 34.148V15.024l19-6.876v20.485" />
      </G>
    </Svg>
  )
}

export default MusicNote
