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

Name
pen-sparkle-24-filled
Set
Fluent UI System Icons
Style
24 Filled
Viewbox
24×24
License
MIT

12 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the pen sparkle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4.088 6.412a2.84 2.84 0 0 0-1.347-.955l-1.378-.448a.544.544 0 0 1 0-1.025l1.378-.448A2.84 2.84 0 0 0 4.5 1.774l.011-.034L4.96.363a.544.544 0 0 1 1.027 0l.447 1.377a2.84 2.84 0 0 0 1.798 1.796l1.378.448l.028.007a.544.544 0 0 1 0 1.025l-1.378.448A2.84 2.84 0 0 0 6.461 7.26l-.448 1.377A.55.55 0 0 1 5.5 9a.54.54 0 0 1-.513-.363L4.539 7.26a2.8 2.8 0 0 0-.45-.848m7.695 3.801l-.765-.248a1.58 1.58 0 0 1-1-.999l-.248-.764a.302.302 0 0 0-.57 0l-.25.764a1.58 1.58 0 0 1-.983.999l-.765.248a.302.302 0 0 0 0 .57l.765.249a1.58 1.58 0 0 1 1 1.002l.248.764a.302.302 0 0 0 .57 0l.249-.764a1.58 1.58 0 0 1 .999-.999l.765-.248a.302.302 0 0 0 0-.57zm.347-.944c.254.091.475.259.63.48l-.04.05a1.29 1.29 0 0 1 0 1.5a1.3 1.3 0 0 1-.65.49l-.76.24a.7.7 0 0 0-.23.14a.7.7 0 0 0-.14.22l-.25.79a1.3 1.3 0 0 1-.48.63a1.29 1.29 0 0 1-1.5 0a1.35 1.35 0 0 1-.49-.65l-.24-.76a.6.6 0 0 0-.14-.23a.7.7 0 0 0-.22-.14l-.539-.17l-3.14 3.14a3.1 3.1 0 0 0-.825 1.477L2.02 21.077a.75.75 0 0 0 .904.903l4.601-1.095a3.1 3.1 0 0 0 1.477-.826L19 10.06a1.75 1.75 0 0 1-.005 2.47l-1.783 1.784a.75.75 0 0 0 1.06 1.06l1.784-1.783A3.25 3.25 0 0 0 20.06 9l.891-.892a3.578 3.578 0 0 0-5.06-5.06l-5.068 5.067l.176.534a.55.55 0 0 0 .11.22a.5.5 0 0 0 .22.13l.73.27z"/></svg>

React

import type { SVGProps } from "react";

export function FluentPenSparkle24Filled(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="M4.088 6.412a2.84 2.84 0 0 0-1.347-.955l-1.378-.448a.544.544 0 0 1 0-1.025l1.378-.448A2.84 2.84 0 0 0 4.5 1.774l.011-.034L4.96.363a.544.544 0 0 1 1.027 0l.447 1.377a2.84 2.84 0 0 0 1.798 1.796l1.378.448l.028.007a.544.544 0 0 1 0 1.025l-1.378.448A2.84 2.84 0 0 0 6.461 7.26l-.448 1.377A.55.55 0 0 1 5.5 9a.54.54 0 0 1-.513-.363L4.539 7.26a2.8 2.8 0 0 0-.45-.848m7.695 3.801l-.765-.248a1.58 1.58 0 0 1-1-.999l-.248-.764a.302.302 0 0 0-.57 0l-.25.764a1.58 1.58 0 0 1-.983.999l-.765.248a.302.302 0 0 0 0 .57l.765.249a1.58 1.58 0 0 1 1 1.002l.248.764a.302.302 0 0 0 .57 0l.249-.764a1.58 1.58 0 0 1 .999-.999l.765-.248a.302.302 0 0 0 0-.57zm.347-.944c.254.091.475.259.63.48l-.04.05a1.29 1.29 0 0 1 0 1.5a1.3 1.3 0 0 1-.65.49l-.76.24a.7.7 0 0 0-.23.14a.7.7 0 0 0-.14.22l-.25.79a1.3 1.3 0 0 1-.48.63a1.29 1.29 0 0 1-1.5 0a1.35 1.35 0 0 1-.49-.65l-.24-.76a.6.6 0 0 0-.14-.23a.7.7 0 0 0-.22-.14l-.539-.17l-3.14 3.14a3.1 3.1 0 0 0-.825 1.477L2.02 21.077a.75.75 0 0 0 .904.903l4.601-1.095a3.1 3.1 0 0 0 1.477-.826L19 10.06a1.75 1.75 0 0 1-.005 2.47l-1.783 1.784a.75.75 0 0 0 1.06 1.06l1.784-1.783A3.25 3.25 0 0 0 20.06 9l.891-.892a3.578 3.578 0 0 0-5.06-5.06l-5.068 5.067l.176.534a.55.55 0 0 0 .11.22a.5.5 0 0 0 .22.13l.73.27z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4.088 6.412a2.84 2.84 0 0 0-1.347-.955l-1.378-.448a.544.544 0 0 1 0-1.025l1.378-.448A2.84 2.84 0 0 0 4.5 1.774l.011-.034L4.96.363a.544.544 0 0 1 1.027 0l.447 1.377a2.84 2.84 0 0 0 1.798 1.796l1.378.448l.028.007a.544.544 0 0 1 0 1.025l-1.378.448A2.84 2.84 0 0 0 6.461 7.26l-.448 1.377A.55.55 0 0 1 5.5 9a.54.54 0 0 1-.513-.363L4.539 7.26a2.8 2.8 0 0 0-.45-.848m7.695 3.801l-.765-.248a1.58 1.58 0 0 1-1-.999l-.248-.764a.302.302 0 0 0-.57 0l-.25.764a1.58 1.58 0 0 1-.983.999l-.765.248a.302.302 0 0 0 0 .57l.765.249a1.58 1.58 0 0 1 1 1.002l.248.764a.302.302 0 0 0 .57 0l.249-.764a1.58 1.58 0 0 1 .999-.999l.765-.248a.302.302 0 0 0 0-.57zm.347-.944c.254.091.475.259.63.48l-.04.05a1.29 1.29 0 0 1 0 1.5a1.3 1.3 0 0 1-.65.49l-.76.24a.7.7 0 0 0-.23.14a.7.7 0 0 0-.14.22l-.25.79a1.3 1.3 0 0 1-.48.63a1.29 1.29 0 0 1-1.5 0a1.35 1.35 0 0 1-.49-.65l-.24-.76a.6.6 0 0 0-.14-.23a.7.7 0 0 0-.22-.14l-.539-.17l-3.14 3.14a3.1 3.1 0 0 0-.825 1.477L2.02 21.077a.75.75 0 0 0 .904.903l4.601-1.095a3.1 3.1 0 0 0 1.477-.826L19 10.06a1.75 1.75 0 0 1-.005 2.47l-1.783 1.784a.75.75 0 0 0 1.06 1.06l1.784-1.783A3.25 3.25 0 0 0 20.06 9l.891-.892a3.578 3.578 0 0 0-5.06-5.06l-5.068 5.067l.176.534a.55.55 0 0 0 .11.22a.5.5 0 0 0 .22.13l.73.27z"/></svg>
</template>

CSS

.icon-pen-sparkle-24-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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4.088%206.412a2.84%202.84%200%200%200-1.347-.955l-1.378-.448a.544.544%200%200%201%200-1.025l1.378-.448A2.84%202.84%200%200%200%204.5%201.774l.011-.034L4.96.363a.544.544%200%200%201%201.027%200l.447%201.377a2.84%202.84%200%200%200%201.798%201.796l1.378.448l.028.007a.544.544%200%200%201%200%201.025l-1.378.448A2.84%202.84%200%200%200%206.461%207.26l-.448%201.377A.55.55%200%200%201%205.5%209a.54.54%200%200%201-.513-.363L4.539%207.26a2.8%202.8%200%200%200-.45-.848m7.695%203.801l-.765-.248a1.58%201.58%200%200%201-1-.999l-.248-.764a.302.302%200%200%200-.57%200l-.25.764a1.58%201.58%200%200%201-.983.999l-.765.248a.302.302%200%200%200%200%20.57l.765.249a1.58%201.58%200%200%201%201%201.002l.248.764a.302.302%200%200%200%20.57%200l.249-.764a1.58%201.58%200%200%201%20.999-.999l.765-.248a.302.302%200%200%200%200-.57zm.347-.944c.254.091.475.259.63.48l-.04.05a1.29%201.29%200%200%201%200%201.5a1.3%201.3%200%200%201-.65.49l-.76.24a.7.7%200%200%200-.23.14a.7.7%200%200%200-.14.22l-.25.79a1.3%201.3%200%200%201-.48.63a1.29%201.29%200%200%201-1.5%200a1.35%201.35%200%200%201-.49-.65l-.24-.76a.6.6%200%200%200-.14-.23a.7.7%200%200%200-.22-.14l-.539-.17l-3.14%203.14a3.1%203.1%200%200%200-.825%201.477L2.02%2021.077a.75.75%200%200%200%20.904.903l4.601-1.095a3.1%203.1%200%200%200%201.477-.826L19%2010.06a1.75%201.75%200%200%201-.005%202.47l-1.783%201.784a.75.75%200%200%200%201.06%201.06l1.784-1.783A3.25%203.25%200%200%200%2020.06%209l.891-.892a3.578%203.578%200%200%200-5.06-5.06l-5.068%205.067l.176.534a.55.55%200%200%200%20.11.22a.5.5%200%200%200%20.22.13l.73.27z%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%22M4.088%206.412a2.84%202.84%200%200%200-1.347-.955l-1.378-.448a.544.544%200%200%201%200-1.025l1.378-.448A2.84%202.84%200%200%200%204.5%201.774l.011-.034L4.96.363a.544.544%200%200%201%201.027%200l.447%201.377a2.84%202.84%200%200%200%201.798%201.796l1.378.448l.028.007a.544.544%200%200%201%200%201.025l-1.378.448A2.84%202.84%200%200%200%206.461%207.26l-.448%201.377A.55.55%200%200%201%205.5%209a.54.54%200%200%201-.513-.363L4.539%207.26a2.8%202.8%200%200%200-.45-.848m7.695%203.801l-.765-.248a1.58%201.58%200%200%201-1-.999l-.248-.764a.302.302%200%200%200-.57%200l-.25.764a1.58%201.58%200%200%201-.983.999l-.765.248a.302.302%200%200%200%200%20.57l.765.249a1.58%201.58%200%200%201%201%201.002l.248.764a.302.302%200%200%200%20.57%200l.249-.764a1.58%201.58%200%200%201%20.999-.999l.765-.248a.302.302%200%200%200%200-.57zm.347-.944c.254.091.475.259.63.48l-.04.05a1.29%201.29%200%200%201%200%201.5a1.3%201.3%200%200%201-.65.49l-.76.24a.7.7%200%200%200-.23.14a.7.7%200%200%200-.14.22l-.25.79a1.3%201.3%200%200%201-.48.63a1.29%201.29%200%200%201-1.5%200a1.35%201.35%200%200%201-.49-.65l-.24-.76a.6.6%200%200%200-.14-.23a.7.7%200%200%200-.22-.14l-.539-.17l-3.14%203.14a3.1%203.1%200%200%200-.825%201.477L2.02%2021.077a.75.75%200%200%200%20.904.903l4.601-1.095a3.1%203.1%200%200%200%201.477-.826L19%2010.06a1.75%201.75%200%200%201-.005%202.47l-1.783%201.784a.75.75%200%200%200%201.06%201.06l1.784-1.783A3.25%203.25%200%200%200%2020.06%209l.891-.892a3.578%203.578%200%200%200-5.06-5.06l-5.068%205.067l.176.534a.55.55%200%200%200%20.11.22a.5.5%200%200%200%20.22.13l.73.27z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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