image-sparkle-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
image-sparkle-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

5 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the image sparkle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7.912 6.412a2.84 2.84 0 0 1 1.347-.955l1.378-.448a.544.544 0 0 0 0-1.025l-1.378-.448A2.84 2.84 0 0 1 7.5 1.774l-.011-.034L7.04.363a.544.544 0 0 0-1.027 0L5.567 1.74a2.84 2.84 0 0 1-1.798 1.796l-1.378.448l-.028.007a.544.544 0 0 0 0 1.025l1.378.448A2.84 2.84 0 0 1 5.539 7.26l.448 1.377A.55.55 0 0 0 6.5 9a.54.54 0 0 0 .513-.363l.448-1.377c.101-.307.254-.593.45-.848M.217 10.213l.766-.248a1.58 1.58 0 0 0 .998-.999l.25-.764a.302.302 0 0 1 .57 0l.248.764a1.58 1.58 0 0 0 .984.999l.765.248a.302.302 0 0 1 0 .57l-.765.249a1.58 1.58 0 0 0-1 1.002l-.248.764a.302.302 0 0 1-.57 0l-.249-.764a1.58 1.58 0 0 0-.999-.999l-.765-.248a.302.302 0 0 1 0-.57zM12 4.47v.03h5.75c.966 0 1.75.784 1.75 1.75v11.5q-.002.315-.104.595l-5.822-5.702l-.128-.116a2.25 2.25 0 0 0-3.02.116l-5.823 5.7a1.8 1.8 0 0 1-.103-.593v-5.759l-.12.038a.7.7 0 0 0-.22.14a.6.6 0 0 0-.14.23l-.24.76a1.35 1.35 0 0 1-.78.806v3.785A3.25 3.25 0 0 0 6.25 21h11.5A3.25 3.25 0 0 0 21 17.75V6.25A3.25 3.25 0 0 0 17.75 3h-6.797c.306.11.573.308.767.569a1.6 1.6 0 0 1 .28.9m.525 9.246L18.33 19.4a1.8 1.8 0 0 1-.581.099H6.25q-.308-.002-.582-.099l5.807-5.686l.084-.071a.75.75 0 0 1 .966.07m4.98-4.963a2.252 2.252 0 1 0-4.505 0a2.252 2.252 0 0 0 4.504 0m-3.005 0a.752.752 0 1 1 1.504 0a.752.752 0 0 1-1.504 0"/></svg>

React

import type { SVGProps } from "react";

export function FluentImageSparkle24Regular(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7.912 6.412a2.84 2.84 0 0 1 1.347-.955l1.378-.448a.544.544 0 0 0 0-1.025l-1.378-.448A2.84 2.84 0 0 1 7.5 1.774l-.011-.034L7.04.363a.544.544 0 0 0-1.027 0L5.567 1.74a2.84 2.84 0 0 1-1.798 1.796l-1.378.448l-.028.007a.544.544 0 0 0 0 1.025l1.378.448A2.84 2.84 0 0 1 5.539 7.26l.448 1.377A.55.55 0 0 0 6.5 9a.54.54 0 0 0 .513-.363l.448-1.377c.101-.307.254-.593.45-.848M.217 10.213l.766-.248a1.58 1.58 0 0 0 .998-.999l.25-.764a.302.302 0 0 1 .57 0l.248.764a1.58 1.58 0 0 0 .984.999l.765.248a.302.302 0 0 1 0 .57l-.765.249a1.58 1.58 0 0 0-1 1.002l-.248.764a.302.302 0 0 1-.57 0l-.249-.764a1.58 1.58 0 0 0-.999-.999l-.765-.248a.302.302 0 0 1 0-.57zM12 4.47v.03h5.75c.966 0 1.75.784 1.75 1.75v11.5q-.002.315-.104.595l-5.822-5.702l-.128-.116a2.25 2.25 0 0 0-3.02.116l-5.823 5.7a1.8 1.8 0 0 1-.103-.593v-5.759l-.12.038a.7.7 0 0 0-.22.14a.6.6 0 0 0-.14.23l-.24.76a1.35 1.35 0 0 1-.78.806v3.785A3.25 3.25 0 0 0 6.25 21h11.5A3.25 3.25 0 0 0 21 17.75V6.25A3.25 3.25 0 0 0 17.75 3h-6.797c.306.11.573.308.767.569a1.6 1.6 0 0 1 .28.9m.525 9.246L18.33 19.4a1.8 1.8 0 0 1-.581.099H6.25q-.308-.002-.582-.099l5.807-5.686l.084-.071a.75.75 0 0 1 .966.07m4.98-4.963a2.252 2.252 0 1 0-4.505 0a2.252 2.252 0 0 0 4.504 0m-3.005 0a.752.752 0 1 1 1.504 0a.752.752 0 0 1-1.504 0"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7.912 6.412a2.84 2.84 0 0 1 1.347-.955l1.378-.448a.544.544 0 0 0 0-1.025l-1.378-.448A2.84 2.84 0 0 1 7.5 1.774l-.011-.034L7.04.363a.544.544 0 0 0-1.027 0L5.567 1.74a2.84 2.84 0 0 1-1.798 1.796l-1.378.448l-.028.007a.544.544 0 0 0 0 1.025l1.378.448A2.84 2.84 0 0 1 5.539 7.26l.448 1.377A.55.55 0 0 0 6.5 9a.54.54 0 0 0 .513-.363l.448-1.377c.101-.307.254-.593.45-.848M.217 10.213l.766-.248a1.58 1.58 0 0 0 .998-.999l.25-.764a.302.302 0 0 1 .57 0l.248.764a1.58 1.58 0 0 0 .984.999l.765.248a.302.302 0 0 1 0 .57l-.765.249a1.58 1.58 0 0 0-1 1.002l-.248.764a.302.302 0 0 1-.57 0l-.249-.764a1.58 1.58 0 0 0-.999-.999l-.765-.248a.302.302 0 0 1 0-.57zM12 4.47v.03h5.75c.966 0 1.75.784 1.75 1.75v11.5q-.002.315-.104.595l-5.822-5.702l-.128-.116a2.25 2.25 0 0 0-3.02.116l-5.823 5.7a1.8 1.8 0 0 1-.103-.593v-5.759l-.12.038a.7.7 0 0 0-.22.14a.6.6 0 0 0-.14.23l-.24.76a1.35 1.35 0 0 1-.78.806v3.785A3.25 3.25 0 0 0 6.25 21h11.5A3.25 3.25 0 0 0 21 17.75V6.25A3.25 3.25 0 0 0 17.75 3h-6.797c.306.11.573.308.767.569a1.6 1.6 0 0 1 .28.9m.525 9.246L18.33 19.4a1.8 1.8 0 0 1-.581.099H6.25q-.308-.002-.582-.099l5.807-5.686l.084-.071a.75.75 0 0 1 .966.07m4.98-4.963a2.252 2.252 0 1 0-4.505 0a2.252 2.252 0 0 0 4.504 0m-3.005 0a.752.752 0 1 1 1.504 0a.752.752 0 0 1-1.504 0"/></svg>
</template>

CSS

.icon-image-sparkle-24-regular {
  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%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.912%206.412a2.84%202.84%200%200%201%201.347-.955l1.378-.448a.544.544%200%200%200%200-1.025l-1.378-.448A2.84%202.84%200%200%201%207.5%201.774l-.011-.034L7.04.363a.544.544%200%200%200-1.027%200L5.567%201.74a2.84%202.84%200%200%201-1.798%201.796l-1.378.448l-.028.007a.544.544%200%200%200%200%201.025l1.378.448A2.84%202.84%200%200%201%205.539%207.26l.448%201.377A.55.55%200%200%200%206.5%209a.54.54%200%200%200%20.513-.363l.448-1.377c.101-.307.254-.593.45-.848M.217%2010.213l.766-.248a1.58%201.58%200%200%200%20.998-.999l.25-.764a.302.302%200%200%201%20.57%200l.248.764a1.58%201.58%200%200%200%20.984.999l.765.248a.302.302%200%200%201%200%20.57l-.765.249a1.58%201.58%200%200%200-1%201.002l-.248.764a.302.302%200%200%201-.57%200l-.249-.764a1.58%201.58%200%200%200-.999-.999l-.765-.248a.302.302%200%200%201%200-.57zM12%204.47v.03h5.75c.966%200%201.75.784%201.75%201.75v11.5q-.002.315-.104.595l-5.822-5.702l-.128-.116a2.25%202.25%200%200%200-3.02.116l-5.823%205.7a1.8%201.8%200%200%201-.103-.593v-5.759l-.12.038a.7.7%200%200%200-.22.14a.6.6%200%200%200-.14.23l-.24.76a1.35%201.35%200%200%201-.78.806v3.785A3.25%203.25%200%200%200%206.25%2021h11.5A3.25%203.25%200%200%200%2021%2017.75V6.25A3.25%203.25%200%200%200%2017.75%203h-6.797c.306.11.573.308.767.569a1.6%201.6%200%200%201%20.28.9m.525%209.246L18.33%2019.4a1.8%201.8%200%200%201-.581.099H6.25q-.308-.002-.582-.099l5.807-5.686l.084-.071a.75.75%200%200%201%20.966.07m4.98-4.963a2.252%202.252%200%201%200-4.505%200a2.252%202.252%200%200%200%204.504%200m-3.005%200a.752.752%200%201%201%201.504%200a.752.752%200%200%201-1.504%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.912%206.412a2.84%202.84%200%200%201%201.347-.955l1.378-.448a.544.544%200%200%200%200-1.025l-1.378-.448A2.84%202.84%200%200%201%207.5%201.774l-.011-.034L7.04.363a.544.544%200%200%200-1.027%200L5.567%201.74a2.84%202.84%200%200%201-1.798%201.796l-1.378.448l-.028.007a.544.544%200%200%200%200%201.025l1.378.448A2.84%202.84%200%200%201%205.539%207.26l.448%201.377A.55.55%200%200%200%206.5%209a.54.54%200%200%200%20.513-.363l.448-1.377c.101-.307.254-.593.45-.848M.217%2010.213l.766-.248a1.58%201.58%200%200%200%20.998-.999l.25-.764a.302.302%200%200%201%20.57%200l.248.764a1.58%201.58%200%200%200%20.984.999l.765.248a.302.302%200%200%201%200%20.57l-.765.249a1.58%201.58%200%200%200-1%201.002l-.248.764a.302.302%200%200%201-.57%200l-.249-.764a1.58%201.58%200%200%200-.999-.999l-.765-.248a.302.302%200%200%201%200-.57zM12%204.47v.03h5.75c.966%200%201.75.784%201.75%201.75v11.5q-.002.315-.104.595l-5.822-5.702l-.128-.116a2.25%202.25%200%200%200-3.02.116l-5.823%205.7a1.8%201.8%200%200%201-.103-.593v-5.759l-.12.038a.7.7%200%200%200-.22.14a.6.6%200%200%200-.14.23l-.24.76a1.35%201.35%200%200%201-.78.806v3.785A3.25%203.25%200%200%200%206.25%2021h11.5A3.25%203.25%200%200%200%2021%2017.75V6.25A3.25%203.25%200%200%200%2017.75%203h-6.797c.306.11.573.308.767.569a1.6%201.6%200%200%201%20.28.9m.525%209.246L18.33%2019.4a1.8%201.8%200%200%201-.581.099H6.25q-.308-.002-.582-.099l5.807-5.686l.084-.071a.75.75%200%200%201%20.966.07m4.98-4.963a2.252%202.252%200%201%200-4.505%200a2.252%202.252%200%200%200%204.504%200m-3.005%200a.752.752%200%201%201%201.504%200a.752.752%200%200%201-1.504%200%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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