import Svg, { Path } from "react-native-svg";
import type { SvgProps } from "react-native-svg";
const SvgComponent = ({ height, width, color }: SvgProps) => (
  <Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
    <Path
      fill={color}
      d='m4.42 10.933 4.15 4.15a.72.72 0 0 1 .225.553.8.8 0 0 1-.245.552.77.77 0 0 1-.567.243.75.75 0 0 1-.567-.244l-4.7-4.7a.9.9 0 0 1-.18-.256.7.7 0 0 1-.061-.298q0-.162.06-.297.06-.136.181-.265l4.717-4.717a.8.8 0 0 1 .569-.233q.327 0 .564.233a.8.8 0 0 1 .234.573q0 .327-.238.565zm5.217.788 3.354 3.362a.74.74 0 0 1 .232.559.79.79 0 0 1-.244.558.82.82 0 0 1-.571.231.75.75 0 0 1-.563-.244l-4.7-4.7a.75.75 0 0 1-.185-.256.8.8 0 0 1-.056-.298q0-.162.056-.297.057-.136.185-.265l4.721-4.721a.75.75 0 0 1 .563-.236.83.83 0 0 1 .566.236.77.77 0 0 1 .238.564q0 .328-.238.565l-3.358 3.358h7.296q2.074 0 3.48 1.411 1.403 1.41 1.403 3.473v3.017a.77.77 0 0 1-.229.566.76.76 0 0 1-.558.23.77.77 0 0 1-.567-.23.77.77 0 0 1-.23-.566V15.02q0-1.417-.94-2.359-.943-.94-2.36-.941z'
    />
  </Svg>
);
export default SvgComponent;
