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

const SvgComponent = ({ height = 11, width = 11, color = "#858585" }: SvgProps) => (
  <Svg width={width} height={height} fill="none" viewBox="0 0 11 11">
    <Path
      d="M8.70648 6.52443H0.809309C0.659309 6.52443 0.533364 6.47443 0.431475 6.37443C0.329698 6.27443 0.278809 6.14943 0.278809 5.99943C0.278809 5.84943 0.329698 5.72348 0.431475 5.62159C0.533364 5.51982 0.659309 5.46893 0.809309 5.46893H8.70648L5.12881 1.89109C5.02325 1.78554 4.96997 1.66237 4.96898 1.52159C4.96809 1.38093 5.02225 1.25593 5.13147 1.14659C5.23703 1.04293 5.3602 0.990649 5.50098 0.98976C5.64175 0.98876 5.76675 1.04104 5.87598 1.14659L10.3538 5.62443C10.4075 5.68187 10.4478 5.74065 10.4746 5.80076C10.5014 5.86098 10.5148 5.92721 10.5148 5.99943C10.5148 6.07165 10.5014 6.13787 10.4746 6.19809C10.4478 6.25821 10.4075 6.31515 10.3538 6.36893L5.87598 10.8466C5.76853 10.954 5.64398 11.0078 5.50231 11.0078C5.36064 11.0078 5.23703 10.954 5.13147 10.8466C5.02225 10.741 4.96764 10.6174 4.96764 10.4758C4.96764 10.3341 5.02225 10.2105 5.13147 10.1049L8.70648 6.52443Z"
      fill={color}
    />
  </Svg>
);

export default SvgComponent;
