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 OutlineOne: 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="M13.5687 7.27273H11.8343L9.67383 8.64062V10.277L11.6724 9.02415H11.7235V16H13.5687V7.27273Z" fill="#5952FF" /> </svg> ); }; |