Skip to content
Snippets Groups Projects
Mail.tsx 326 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgMail(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M0 129v742h1000V129H0zm500 477l61-51 287 219H152l287-219zm113-93l290-245v464zm193-287h46L500 523 148 226h658zm-709 0zm290 287L97 735V268zM97 774z" />
        </svg>
      );
    }
    
    export default SvgMail;