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='M15.55 10.767q.567 0 .968-.399.4-.397.4-.966 0-.57-.398-.969a1.31 1.31 0 0 0-.967-.4q-.569 0-.969.398-.4.399-.4.967 0 .57.399.969.397.4.966.4m-7.1 0q.567 0 .968-.399.4-.397.4-.966 0-.57-.398-.969a1.31 1.31 0 0 0-.967-.4q-.569 0-.969.398-.4.399-.4.967 0 .57.398.969.399.4.967.4m3.552 11.066a9.6 9.6 0 0 1-3.836-.775 9.9 9.9 0 0 1-3.124-2.104 9.9 9.9 0 0 1-2.101-3.122 9.6 9.6 0 0 1-.773-3.831q0-2.04.775-3.836a9.9 9.9 0 0 1 2.104-3.124A9.9 9.9 0 0 1 8.17 2.939 9.6 9.6 0 0 1 12 2.167q2.041 0 3.836.775a9.9 9.9 0 0 1 3.124 2.104 9.9 9.9 0 0 1 2.102 3.122 9.6 9.6 0 0 1 .772 3.831q0 2.04-.775 3.836a9.9 9.9 0 0 1-2.104 3.124 9.9 9.9 0 0 1-3.121 2.102 9.6 9.6 0 0 1-3.832.772m0-1.583q3.45 0 5.85-2.399t2.4-5.851q0-3.452-2.4-5.851t-5.85-2.399q-3.453 0-5.852 2.399T3.751 12q0 3.452 2.4 5.851 2.398 2.4 5.85 2.399m-.011-2.867a5.35 5.35 0 0 0 4.54-2.446.54.54 0 0 0-.018-.562.55.55 0 0 0-.505-.275h-8.01q-.347 0-.511.275a.52.52 0 0 0-.007.556 5.2 5.2 0 0 0 1.932 1.802 5.3 5.3 0 0 0 2.579.65'
    />
  </Svg>
);
export default SvgComponent;
