Skip to content
Snippets Groups Projects
GooglePlus.tsx 504 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgGooglePlus(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M318 447v109h181q-5 28-22 56-22 35-58 56-43 25-101 25-53 0-98-27t-72-73-27-101 27-101 72-73 98-27q76 0 127 49l86-83q-43-40-95-61-55-22-118-22-86 0-161 43-72 43-114 114Q0 406 0 492t43 161q42 72 114 114 75 43 161 43 91 0 161-40 68-39 107-110t38-161q0-23-5-52H318zm682-10h-94v-93h-93v93h-94v94h94v94h93v-94h94v-94z" />
        </svg>
      );
    }
    
    export default SvgGooglePlus;