Skip to content
Snippets Groups Projects
NewPerson.tsx 415 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgNewPerson(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M210 400q0 61 30 113t82 82 114 31 113-31 82-82 30-113-30-113-82-83-113-30-114 30-82 83-30 113zm235 355q-105 5-206-49l-91 171q139 75 281 75h26q134-5 271-81l-97-168q-94 47-184 52zM935 97h-96V0h-97v97h-97v97h97v96h97v-96h96V97z" />
        </svg>
      );
    }
    
    export default SvgNewPerson;