All files / src/components/elements/Icons CircleFour.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 CircleFour: 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="M11.93 21.6989H18.2134V24H20.8597V21.6989H22.4833V19.4808H20.8597V10.9091H17.3952L11.93 19.5192V21.6989ZM18.2645 19.4808H14.7169V19.3786L18.1622 13.9261H18.2645V19.4808Z"
        fill="#53535F"
      />
    </svg>
  );
};