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

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

function Star(props: SvgIconProps): React.ReactElement {
  return (
    <Svg
      width={props.size}
      height={props.size}
      style={props.style}
      viewBox="0 0 24 23"
    >
      <Path
        d="M12 0L15.668 7.568L24 8.719L17.936 14.547L19.416 22.826L12 18.859L4.583 22.826L6.064 14.547L0 8.719L8.332 7.568L12 0Z"
        fill={props.fill ?? '#FF407B'}
        fillRule="nonzero"
      />
    </Svg>
  )
}

export default Star
