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

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

function StarBurst(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={56} height={56} viewBox="0 0 56 56" {...props}>
      <Path
        d="M28 51.533l-5.463 3.929-3.543-5.72-6.55 1.54-1.084-6.642-6.641-1.084 1.54-6.55-5.721-3.543L4.468 28l-3.93-5.463 5.72-3.543-1.54-6.55 6.642-1.084 1.084-6.641 6.55 1.54L22.537.538 28 4.468l5.463-3.93 3.543 5.72 6.55-1.54 1.084 6.642 6.641 1.084-1.54 6.55 5.721 3.543L51.532 28l3.93 5.463-5.72 3.543 1.54 6.55-6.642 1.084-1.084 6.641-6.55-1.54-3.543 5.721z"
        fill={props.fill}
        fillRule="evenodd"
      />
    </Svg>
  )
}

export default StarBurst
