search-sparkle-28-filled from Fluent UI System Icons by Microsoft Corporation · 28 Filled · MIT Free for personal and commercial use.

Name
search-sparkle-28-filled
Set
Fluent UI System Icons
Style
28 Filled
Viewbox
28×28
License
MIT

12 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the search sparkle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M12.5 3q.502 0 .991.05l-1.402.463c-.32.106-.597.314-.79.59a1.58 1.58 0 0 0-.295 1.045A7.5 7.5 0 0 0 12.5 20a7.497 7.497 0 0 0 7.495-7.332a1 1 0 0 1 .194.146a.9.9 0 0 1 .22.35l.3.919a1.34 1.34 0 0 0 .965.89a9.5 9.5 0 0 1-1.786 3.5l5.819 5.82a1 1 0 1 1-1.414 1.414l-5.82-5.82A9.46 9.46 0 0 1 12.5 22a9.5 9.5 0 0 1 0-19m9.481 5a.36.36 0 0 1 .343.242l.298.918a1.89 1.89 0 0 0 1.2 1.197l.917.3l.019.003a.364.364 0 0 1 .176.552a.36.36 0 0 1-.176.132l-.92.299a1.9 1.9 0 0 0-1.197 1.197l-.3.918a.363.363 0 0 1-.683 0l-.299-.918a1.9 1.9 0 0 0-1.199-1.202l-.918-.298a.364.364 0 0 1-.176-.552a.36.36 0 0 1 .176-.132l.918-.299a1.9 1.9 0 0 0 1.18-1.197l.3-.918A.36.36 0 0 1 21.98 8m-5.01-8a.605.605 0 0 1 .57.403l.497 1.53a3.15 3.15 0 0 0 1.998 1.997l1.53.497l.032.007a.606.606 0 0 1 0 1.14l-1.532.496a3.16 3.16 0 0 0-1.998 1.997l-.497 1.53l-.014.038a.605.605 0 0 1-1.126-.038l-.497-1.53a3.15 3.15 0 0 0-1.998-2.004l-1.532-.497a.606.606 0 0 1 0-1.14l1.532-.496a3.16 3.16 0 0 0 1.954-1.96l.012-.037l.498-1.53A.6.6 0 0 1 16.97 0"/></svg>

React

import type { SVGProps } from "react";

export function FluentSearchSparkle28Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M12.5 3q.502 0 .991.05l-1.402.463c-.32.106-.597.314-.79.59a1.58 1.58 0 0 0-.295 1.045A7.5 7.5 0 0 0 12.5 20a7.497 7.497 0 0 0 7.495-7.332a1 1 0 0 1 .194.146a.9.9 0 0 1 .22.35l.3.919a1.34 1.34 0 0 0 .965.89a9.5 9.5 0 0 1-1.786 3.5l5.819 5.82a1 1 0 1 1-1.414 1.414l-5.82-5.82A9.46 9.46 0 0 1 12.5 22a9.5 9.5 0 0 1 0-19m9.481 5a.36.36 0 0 1 .343.242l.298.918a1.89 1.89 0 0 0 1.2 1.197l.917.3l.019.003a.364.364 0 0 1 .176.552a.36.36 0 0 1-.176.132l-.92.299a1.9 1.9 0 0 0-1.197 1.197l-.3.918a.363.363 0 0 1-.683 0l-.299-.918a1.9 1.9 0 0 0-1.199-1.202l-.918-.298a.364.364 0 0 1-.176-.552a.36.36 0 0 1 .176-.132l.918-.299a1.9 1.9 0 0 0 1.18-1.197l.3-.918A.36.36 0 0 1 21.98 8m-5.01-8a.605.605 0 0 1 .57.403l.497 1.53a3.15 3.15 0 0 0 1.998 1.997l1.53.497l.032.007a.606.606 0 0 1 0 1.14l-1.532.496a3.16 3.16 0 0 0-1.998 1.997l-.497 1.53l-.014.038a.605.605 0 0 1-1.126-.038l-.497-1.53a3.15 3.15 0 0 0-1.998-2.004l-1.532-.497a.606.606 0 0 1 0-1.14l1.532-.496a3.16 3.16 0 0 0 1.954-1.96l.012-.037l.498-1.53A.6.6 0 0 1 16.97 0"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M12.5 3q.502 0 .991.05l-1.402.463c-.32.106-.597.314-.79.59a1.58 1.58 0 0 0-.295 1.045A7.5 7.5 0 0 0 12.5 20a7.497 7.497 0 0 0 7.495-7.332a1 1 0 0 1 .194.146a.9.9 0 0 1 .22.35l.3.919a1.34 1.34 0 0 0 .965.89a9.5 9.5 0 0 1-1.786 3.5l5.819 5.82a1 1 0 1 1-1.414 1.414l-5.82-5.82A9.46 9.46 0 0 1 12.5 22a9.5 9.5 0 0 1 0-19m9.481 5a.36.36 0 0 1 .343.242l.298.918a1.89 1.89 0 0 0 1.2 1.197l.917.3l.019.003a.364.364 0 0 1 .176.552a.36.36 0 0 1-.176.132l-.92.299a1.9 1.9 0 0 0-1.197 1.197l-.3.918a.363.363 0 0 1-.683 0l-.299-.918a1.9 1.9 0 0 0-1.199-1.202l-.918-.298a.364.364 0 0 1-.176-.552a.36.36 0 0 1 .176-.132l.918-.299a1.9 1.9 0 0 0 1.18-1.197l.3-.918A.36.36 0 0 1 21.98 8m-5.01-8a.605.605 0 0 1 .57.403l.497 1.53a3.15 3.15 0 0 0 1.998 1.997l1.53.497l.032.007a.606.606 0 0 1 0 1.14l-1.532.496a3.16 3.16 0 0 0-1.998 1.997l-.497 1.53l-.014.038a.605.605 0 0 1-1.126-.038l-.497-1.53a3.15 3.15 0 0 0-1.998-2.004l-1.532-.497a.606.606 0 0 1 0-1.14l1.532-.496a3.16 3.16 0 0 0 1.954-1.96l.012-.037l.498-1.53A.6.6 0 0 1 16.97 0"/></svg>
</template>

CSS

.icon-search-sparkle-28-filled {
  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%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.5%203q.502%200%20.991.05l-1.402.463c-.32.106-.597.314-.79.59a1.58%201.58%200%200%200-.295%201.045A7.5%207.5%200%200%200%2012.5%2020a7.497%207.497%200%200%200%207.495-7.332a1%201%200%200%201%20.194.146a.9.9%200%200%201%20.22.35l.3.919a1.34%201.34%200%200%200%20.965.89a9.5%209.5%200%200%201-1.786%203.5l5.819%205.82a1%201%200%201%201-1.414%201.414l-5.82-5.82A9.46%209.46%200%200%201%2012.5%2022a9.5%209.5%200%200%201%200-19m9.481%205a.36.36%200%200%201%20.343.242l.298.918a1.89%201.89%200%200%200%201.2%201.197l.917.3l.019.003a.364.364%200%200%201%20.176.552a.36.36%200%200%201-.176.132l-.92.299a1.9%201.9%200%200%200-1.197%201.197l-.3.918a.363.363%200%200%201-.683%200l-.299-.918a1.9%201.9%200%200%200-1.199-1.202l-.918-.298a.364.364%200%200%201-.176-.552a.36.36%200%200%201%20.176-.132l.918-.299a1.9%201.9%200%200%200%201.18-1.197l.3-.918A.36.36%200%200%201%2021.98%208m-5.01-8a.605.605%200%200%201%20.57.403l.497%201.53a3.15%203.15%200%200%200%201.998%201.997l1.53.497l.032.007a.606.606%200%200%201%200%201.14l-1.532.496a3.16%203.16%200%200%200-1.998%201.997l-.497%201.53l-.014.038a.605.605%200%200%201-1.126-.038l-.497-1.53a3.15%203.15%200%200%200-1.998-2.004l-1.532-.497a.606.606%200%200%201%200-1.14l1.532-.496a3.16%203.16%200%200%200%201.954-1.96l.012-.037l.498-1.53A.6.6%200%200%201%2016.97%200%22%2F%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%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.5%203q.502%200%20.991.05l-1.402.463c-.32.106-.597.314-.79.59a1.58%201.58%200%200%200-.295%201.045A7.5%207.5%200%200%200%2012.5%2020a7.497%207.497%200%200%200%207.495-7.332a1%201%200%200%201%20.194.146a.9.9%200%200%201%20.22.35l.3.919a1.34%201.34%200%200%200%20.965.89a9.5%209.5%200%200%201-1.786%203.5l5.819%205.82a1%201%200%201%201-1.414%201.414l-5.82-5.82A9.46%209.46%200%200%201%2012.5%2022a9.5%209.5%200%200%201%200-19m9.481%205a.36.36%200%200%201%20.343.242l.298.918a1.89%201.89%200%200%200%201.2%201.197l.917.3l.019.003a.364.364%200%200%201%20.176.552a.36.36%200%200%201-.176.132l-.92.299a1.9%201.9%200%200%200-1.197%201.197l-.3.918a.363.363%200%200%201-.683%200l-.299-.918a1.9%201.9%200%200%200-1.199-1.202l-.918-.298a.364.364%200%200%201-.176-.552a.36.36%200%200%201%20.176-.132l.918-.299a1.9%201.9%200%200%200%201.18-1.197l.3-.918A.36.36%200%200%201%2021.98%208m-5.01-8a.605.605%200%200%201%20.57.403l.497%201.53a3.15%203.15%200%200%200%201.998%201.997l1.53.497l.032.007a.606.606%200%200%201%200%201.14l-1.532.496a3.16%203.16%200%200%200-1.998%201.997l-.497%201.53l-.014.038a.605.605%200%200%201-1.126-.038l-.497-1.53a3.15%203.15%200%200%200-1.998-2.004l-1.532-.497a.606.606%200%200%201%200-1.14l1.532-.496a3.16%203.16%200%200%200%201.954-1.96l.012-.037l.498-1.53A.6.6%200%200%201%2016.97%200%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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