Skip to content
Snippets Groups Projects
NewGroup.tsx 562 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgNewGroup(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M61 432q0 62 31 113t82 82 113 31 113-31 83-82 30-113-30-113-83-83-113-30-113 30-82 83-31 113zm236 355q-105 5-207-48L0 910q138 74 281 74h25q135-5 271-81l-96-168q-94 47-184 52zm358-322q0 19-3 29 41-15 67-49t26-77q2-38-16-70t-49-52-71-20-61 13q52 39 80 97 29 60 27 129zm-13 87q-20 74-71 125h52q82-10 148-38l-48-110q-23 10-81 23zm358-455h-97V0h-97v97h-96v97h96v96h97v-96h97V97z" />
        </svg>
      );
    }
    
    export default SvgNewGroup;