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

const StarIcon = () => (
  <Svg width={12} height={12} viewBox="0 0 12 12" fill="none">
    <Path
      d="M6.865 1.75507L7.745 3.51507C7.865 3.76007 8.185 3.99507 8.455 4.04007L10.05 4.30507C11.07 4.47507 11.31 5.21507 10.575 5.94507L9.335 7.18507C9.125 7.39507 9.01 7.80007 9.075 8.09007L9.43 9.62507C9.71 10.8401 9.065 11.3101 7.99 10.6751L6.495 9.79007C6.225 9.63007 5.78 9.63007 5.505 9.79007L4.01 10.6751C2.94 11.3101 2.29 10.8351 2.57 9.62507L2.925 8.09007C2.99 7.80007 2.875 7.39507 2.665 7.18507L1.425 5.94507C0.695 5.21507 0.93 4.47507 1.95 4.30507L3.545 4.04007C3.81 3.99507 4.13 3.76007 4.25 3.51507L5.13 1.75507C5.61 0.800068 6.39 0.800068 6.865 1.75507Z"
      fill="#F58849"
      stroke="#F58849"
      strokeWidth="0.75"
      strokeLinecap="round"
      strokeLinejoin="round"
    />
  </Svg>
);

export default StarIcon;
