Skip to content
Snippets Groups Projects
MagnifyMinus.tsx 494 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgMagnifyMinus(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M958 848L758 645q39-54 60-116t21-126q0-109-55-203-54-91-145-145Q545 0 436 0T232 55q-91 54-145 145-55 94-55 203t55 204q54 91 145 144 94 55 203 55 54 0 106-14t98-40l229 229 109-110zM435 161q65 0 121 33t89 88 32 121-32 121-89 88-121 33-120-33-88-88-33-121 33-121 88-88 120-33zM290 355h291v97H290v-97z" />
        </svg>
      );
    }
    
    export default SvgMagnifyMinus;