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 20.167q-.594 0-1.013-.422a1.39 1.39 0 0 1-.419-1.014q0-.594.421-1.012.422-.42 1.015-.419.594 0 1.012.421.42.421.419 1.015 0 .593-.421 1.012-.422.42-1.015.419m0-6.734q-.594 0-1.013-.42a1.39 1.39 0 0 1-.419-1.015q0-.594.421-1.012.422-.42 1.015-.42.594 0 1.012.422.42.42.419 1.014 0 .594-.421 1.012-.422.42-1.015.42M12 6.7q-.594 0-1.013-.421a1.39 1.39 0 0 1-.419-1.015q0-.593.421-1.012.422-.42 1.015-.419.594 0 1.012.422.42.42.419 1.014 0 .594-.421 1.012-.422.42-1.015.419'
    />
  </Svg>
);
export default SvgComponent;
