Skip to content
Snippets Groups Projects
Facebook.tsx 354 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgFacebook(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M710 229V103l-31-3q-38-3-73-3-31 0-58 5-30 6-48 17-53 27-74 91-9 21-11 53-2 19-2 56v75H287v145h126v367h145V539h123l19-142H558l-1-49q-1-52 1-64 3-15 13-28t23-17 66-8z" />
        </svg>
      );
    }
    
    export default SvgFacebook;