search favorite icon

search-favorite from Reicon by REICON · Outline · Newicons · MIT Free for personal and commercial use.

Name
search-favorite
Set
Reicon
Style
Outline
Category
Newicons
Viewbox
24×24
License
MIT

1 other variant in Reicon

More newicons icons from Reicon

Use the search favorite icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M20 11a9 9 0 1 1-9-9"/><path d="M13.5 6.13c-.35-1.1.06-2.47 1.22-2.84c.61-.2 1.36-.03 1.79.56c.4-.61 1.18-.75 1.78-.56c1.16.37 1.57 1.74 1.22 2.84c-.55 1.75-2.47 2.66-3 2.66c-.54 0-2.44-.89-3.01-2.66m5.43 14.56c.53 1.6 1.74 1.76 2.67.36c.85-1.28.29-2.33-1.25-2.33c-1.14-.01-1.78.88-1.42 1.97"/></g></svg>

React

import type { SVGProps } from "react";

export function ReiconSearchFavorite(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5"><path d="M20 11a9 9 0 1 1-9-9"/><path d="M13.5 6.13c-.35-1.1.06-2.47 1.22-2.84c.61-.2 1.36-.03 1.79.56c.4-.61 1.18-.75 1.78-.56c1.16.37 1.57 1.74 1.22 2.84c-.55 1.75-2.47 2.66-3 2.66c-.54 0-2.44-.89-3.01-2.66m5.43 14.56c.53 1.6 1.74 1.76 2.67.36c.85-1.28.29-2.33-1.25-2.33c-1.14-.01-1.78.88-1.42 1.97"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M20 11a9 9 0 1 1-9-9"/><path d="M13.5 6.13c-.35-1.1.06-2.47 1.22-2.84c.61-.2 1.36-.03 1.79.56c.4-.61 1.18-.75 1.78-.56c1.16.37 1.57 1.74 1.22 2.84c-.55 1.75-2.47 2.66-3 2.66c-.54 0-2.44-.89-3.01-2.66m5.43 14.56c.53 1.6 1.74 1.76 2.67.36c.85-1.28.29-2.33-1.25-2.33c-1.14-.01-1.78.88-1.42 1.97"/></g></svg>
</template>

CSS

.icon-search-favorite {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M20%2011a9%209%200%201%201-9-9%22%2F%3E%3Cpath%20d%3D%22M13.5%206.13c-.35-1.1.06-2.47%201.22-2.84c.61-.2%201.36-.03%201.79.56c.4-.61%201.18-.75%201.78-.56c1.16.37%201.57%201.74%201.22%202.84c-.55%201.75-2.47%202.66-3%202.66c-.54%200-2.44-.89-3.01-2.66m5.43%2014.56c.53%201.6%201.74%201.76%202.67.36c.85-1.28.29-2.33-1.25-2.33c-1.14-.01-1.78.88-1.42%201.97%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M20%2011a9%209%200%201%201-9-9%22%2F%3E%3Cpath%20d%3D%22M13.5%206.13c-.35-1.1.06-2.47%201.22-2.84c.61-.2%201.36-.03%201.79.56c.4-.61%201.18-.75%201.78-.56c1.16.37%201.57%201.74%201.22%202.84c-.55%201.75-2.47%202.66-3%202.66c-.54%200-2.44-.89-3.01-2.66m5.43%2014.56c.53%201.6%201.74%201.76%202.67.36c.85-1.28.29-2.33-1.25-2.33c-1.14-.01-1.78.88-1.42%201.97%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/search-favorite.svg?color=%231a73e8&size=48

Search Favorite outline icon — Reicon · IconsDB