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 | import * as React from "react"; export const OutlineTwo: React.FunctionComponent = () => { return ( <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="12" r="9" fill="white" stroke="#5952FF" strokeWidth="2" /> <path d="M8.92809 16H15.1497V14.4915H11.4849V14.4318L12.7591 13.1832C14.5531 11.5469 15.0346 10.7287 15.0346 9.7358C15.0346 8.22301 13.7988 7.15341 11.9281 7.15341C10.0957 7.15341 8.8386 8.24858 8.84286 9.96165H10.5943C10.59 9.12642 11.1184 8.61506 11.9153 8.61506C12.6824 8.61506 13.2534 9.09233 13.2534 9.85938C13.2534 10.554 12.8272 11.0312 12.0346 11.794L8.92809 14.6705V16Z" fill="#5952FF" /> </svg> ); }; |