Skip to content
Snippets Groups Projects
Avatar.tsx 361 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgAvatar(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M274 387q0 61 31 113t82 82 113 31 113-31 83-82 30-113-30-113-83-83-113-30-113 30-82 83-31 113zm220 548q-143 0-281-74l90-171q102 53 207 49 94-5 184-55l96 168q-133 79-271 83h-25z" />
        </svg>
      );
    }
    
    export default SvgAvatar;