All files / src/components/elements/Icons CircleFive.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 CircleFive: 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.9997" cy="16.9997" r="13.1667" fill="white" stroke="#53535F" stroke-width="2" />
      <path
        d="M17.2082 24.179C20.123 24.179 22.1045 22.2805 22.0981 19.6342C22.1045 17.1286 20.3531 15.326 17.9944 15.326C16.8439 15.326 15.8531 15.8054 15.3929 16.451H15.3162L15.6549 13.1719H21.3758V10.9091H13.373L12.753 17.8125L15.2139 18.2536C15.6166 17.7102 16.3964 17.3714 17.1699 17.3714C18.4866 17.3778 19.4326 18.3303 19.4326 19.7045C19.4326 21.0661 18.5058 22.0057 17.2082 22.0057C16.1088 22.0057 15.2203 21.3153 15.1564 20.299H12.4717C12.5228 22.5618 14.498 24.179 17.2082 24.179Z"
        fill="#53535F"
      />
    </svg>
  );
};