Skip to content
Snippets Groups Projects
Favorites.tsx 262 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgFavorites(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M500 65l106 329h346L671 603l110 332-281-203-281 203 110-332L48 394h346z" />
        </svg>
      );
    }
    
    export default SvgFavorites;