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='m12 13.1 3.116 3.117a.75.75 0 0 0 .55.229.75.75 0 0 0 .55-.23.75.75 0 0 0 .229-.55.75.75 0 0 0-.229-.55L13.099 12l3.117-3.117a.75.75 0 0 0 .229-.55.75.75 0 0 0-.229-.55.75.75 0 0 0-.55-.229.75.75 0 0 0-.55.23L11.999 10.9 8.883 7.783a.75.75 0 0 0-.55-.229.75.75 0 0 0-.55.23.75.75 0 0 0-.23.55.75.75 0 0 0 .23.55L10.899 12l-3.116 3.117a.75.75 0 0 0-.23.55.75.75 0 0 0 .23.55.75.75 0 0 0 .55.229.75.75 0 0 0 .55-.23zm0 8.733a9.5 9.5 0 0 1-3.819-.777 10 10 0 0 1-3.128-2.113 10 10 0 0 1-2.11-3.128 9.5 9.5 0 0 1-.777-3.814q0-2.04.777-3.836a9.9 9.9 0 0 1 2.113-3.124 10 10 0 0 1 3.128-2.102 9.5 9.5 0 0 1 3.814-.772q2.041 0 3.836.775a9.9 9.9 0 0 1 3.125 2.104 9.9 9.9 0 0 1 2.1 3.122 9.6 9.6 0 0 1 .773 3.831q0 2.024-.773 3.82a9.95 9.95 0 0 1-2.104 3.127 10 10 0 0 1-3.123 2.11 9.5 9.5 0 0 1-3.832.777M12 20.25q3.438 0 5.844-2.414t2.406-5.835q0-3.438-2.405-5.845Q15.437 3.75 12 3.75q-3.421 0-5.836 2.406T3.749 12q0 3.42 2.414 5.836Q8.578 20.25 12 20.25'
    />
  </Svg>
);
export default SvgComponent;
