Skip to content
Snippets Groups Projects
Phone.tsx 866 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgPhone(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M845 139Q771 67 676 31T477 0Q352 6 243 73 138 138 73 243 6 352 0 477q-5 105 31 199t108 169 165 115 196 40h16v-94h-16q-84 0-159-32t-134-93-87-138-26-162q4-102 58-190 52-86 137-139 89-54 192-58 84-5 162 24t138 88 93 134 32 160q0 55-30 104t-79 73q0-3 2-10t1-10 2-12 1-13q7-23-33-48-30-19-67-29-39-11-59-3-15 7-18 22 0 3-7 23-9 38-13 42-9 0-16-7-13-11-34-32l-33-35-65-65q-16-14-36-35-34-35-32-33-4-4-5-10l-1-6q4-2 20-6l34-10q7-1 10-3 14-4 20-18 8-21 0-60-10-35-29-65-25-39-49-35-9 4-25 4-33 6-49 12l-16 10q-30 20-48 48t-23 65q-7 45 8 91t47 86l81 91 29 32 12 13q31 31 50 48 32 29 67 52-1 0 18 7 21 7 41 11 30 6 57 5h67q80 0 148-41 67-39 106-105 40-69 40-148 0-104-40-198T845 139zM481 542z" />
        </svg>
      );
    }
    
    export default SvgPhone;