All files / src/components/elements/Icons CircleThree.tsx

0% Statements 0/2
0% Branches 0/4
0% Functions 0/1
0% Lines 0/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
import * as React from "react";
import { SvgProps } from "./";
 
export const CircleThree: React.FunctionComponent<SvgProps> = (props) => {
  return (
    <svg
      width={props.size || "34"}
      height={props.size || "34"}
      viewBox="0 0 34 34"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <circle cx="16.9999" cy="16.9997" r="13.1667" fill="white" stroke="#53535F" stroke-width="2" />
      <path
        d="M17.1339 24.179C20.0742 24.179 22.1772 22.5618 22.1708 20.3246C22.1772 18.6946 21.1417 17.5312 19.2177 17.2884V17.1861C20.6815 16.924 21.6914 15.8885 21.685 14.4183C21.6914 12.3537 19.8825 10.7301 17.1723 10.7301C14.4876 10.7301 12.4677 12.3026 12.4294 14.5653H15.0821C15.114 13.5682 16.0281 12.9226 17.1595 12.9226C18.2781 12.9226 19.026 13.6001 19.0196 14.5845C19.026 15.6136 18.1502 16.3104 16.891 16.3104H15.6701V18.343H16.891C18.374 18.343 19.3008 19.0845 19.2944 20.1392C19.3008 21.1811 18.4059 21.897 17.1403 21.897C15.9194 21.897 15.0054 21.2578 14.9542 20.299H12.1673C12.212 22.5874 14.2575 24.179 17.1339 24.179Z"
        fill="#53535F"
      />
    </svg>
  );
};