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 22 23 24 25 26 | import * as React from "react"; import { SvgProps } from "./"; export const CircleTwo: 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" > <path d="M30.0031 17.0007C30.0031 24.2774 24.1365 30.1673 16.9106 30.1673C9.68477 30.1673 3.81812 24.2774 3.81812 17.0007C3.81812 9.72395 9.68477 3.83398 16.9106 3.83398C24.1365 3.83398 30.0031 9.72395 30.0031 17.0007Z" fill="white" stroke="#53535F" stroke-width="2" /> <path d="M12.3027 23.834H21.6351V21.5712H16.138V21.4817L18.0492 19.6088C20.7402 17.1543 21.4625 15.927 21.4625 14.4377C21.4625 12.1685 19.6089 10.5641 16.8027 10.5641C14.0542 10.5641 12.1685 12.2069 12.1749 14.7765H14.802C14.7956 13.5236 15.5883 12.7566 16.7836 12.7566C17.9341 12.7566 18.7907 13.4725 18.7907 14.623C18.7907 15.6649 18.1515 16.3809 16.9625 17.525L12.3027 21.8397V23.834Z" fill="#53535F" /> </svg> ); }; |