wand icon
wand-24-filled from Fluent UI System Icons by Microsoft Corporation · 24 Filled · MIT Free for personal and commercial use.
- Name
- wand-24-filled
- Set
- Fluent UI System Icons
- Style
- 24 Filled
- Viewbox
- 24×24
- License
- MIT
- Aliases
- magic-wand-24-filled
9 other variants in Fluent UI System Icons
The same icon in other sets
Use the wand icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m11.405 9.465l-8.707 8.714a2.27 2.27 0 0 0 3.211 3.208l8.706-8.712zm5.447 5.542L16.75 15a.75.75 0 0 0-.743.648L16 15.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.694.648.743l.102.007H16v.75c0 .38.282.694.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V18h.75a.75.75 0 0 0 .743-.648L19 17.25a.75.75 0 0 0-.648-.743l-.102-.007h-.75v-.75a.75.75 0 0 0-.648-.743L16.75 15zm-3.538-7.442l-.136.126l-.712.713l3.21 3.21l.712-.714a2.25 2.25 0 0 0-.001-3.182l-.157-.146a2.25 2.25 0 0 0-2.916-.007M6.852 5.007L6.75 5a.75.75 0 0 0-.743.648L6 5.75v.75h-.75a.75.75 0 0 0-.743.648L4.5 7.25c0 .38.282.693.648.743L5.25 8H6v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648L7.5 8.75V8h.75a.75.75 0 0 0 .743-.648L9 7.25a.75.75 0 0 0-.648-.743L8.25 6.5H7.5v-.75a.75.75 0 0 0-.648-.743L6.75 5zm12-2L18.75 3a.75.75 0 0 0-.743.648L18 3.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.693.648.743L17.25 6H18v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V6h.75a.75.75 0 0 0 .743-.648L21 5.25a.75.75 0 0 0-.648-.743L20.25 4.5h-.75v-.75a.75.75 0 0 0-.648-.743L18.75 3z"/></svg>
React
import type { SVGProps } from "react";
export function FluentWand24Filled(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="m11.405 9.465l-8.707 8.714a2.27 2.27 0 0 0 3.211 3.208l8.706-8.712zm5.447 5.542L16.75 15a.75.75 0 0 0-.743.648L16 15.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.694.648.743l.102.007H16v.75c0 .38.282.694.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V18h.75a.75.75 0 0 0 .743-.648L19 17.25a.75.75 0 0 0-.648-.743l-.102-.007h-.75v-.75a.75.75 0 0 0-.648-.743L16.75 15zm-3.538-7.442l-.136.126l-.712.713l3.21 3.21l.712-.714a2.25 2.25 0 0 0-.001-3.182l-.157-.146a2.25 2.25 0 0 0-2.916-.007M6.852 5.007L6.75 5a.75.75 0 0 0-.743.648L6 5.75v.75h-.75a.75.75 0 0 0-.743.648L4.5 7.25c0 .38.282.693.648.743L5.25 8H6v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648L7.5 8.75V8h.75a.75.75 0 0 0 .743-.648L9 7.25a.75.75 0 0 0-.648-.743L8.25 6.5H7.5v-.75a.75.75 0 0 0-.648-.743L6.75 5zm12-2L18.75 3a.75.75 0 0 0-.743.648L18 3.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.693.648.743L17.25 6H18v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V6h.75a.75.75 0 0 0 .743-.648L21 5.25a.75.75 0 0 0-.648-.743L20.25 4.5h-.75v-.75a.75.75 0 0 0-.648-.743L18.75 3z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m11.405 9.465l-8.707 8.714a2.27 2.27 0 0 0 3.211 3.208l8.706-8.712zm5.447 5.542L16.75 15a.75.75 0 0 0-.743.648L16 15.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.694.648.743l.102.007H16v.75c0 .38.282.694.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V18h.75a.75.75 0 0 0 .743-.648L19 17.25a.75.75 0 0 0-.648-.743l-.102-.007h-.75v-.75a.75.75 0 0 0-.648-.743L16.75 15zm-3.538-7.442l-.136.126l-.712.713l3.21 3.21l.712-.714a2.25 2.25 0 0 0-.001-3.182l-.157-.146a2.25 2.25 0 0 0-2.916-.007M6.852 5.007L6.75 5a.75.75 0 0 0-.743.648L6 5.75v.75h-.75a.75.75 0 0 0-.743.648L4.5 7.25c0 .38.282.693.648.743L5.25 8H6v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648L7.5 8.75V8h.75a.75.75 0 0 0 .743-.648L9 7.25a.75.75 0 0 0-.648-.743L8.25 6.5H7.5v-.75a.75.75 0 0 0-.648-.743L6.75 5zm12-2L18.75 3a.75.75 0 0 0-.743.648L18 3.75v.75h-.75a.75.75 0 0 0-.743.648l-.007.102c0 .38.282.693.648.743L17.25 6H18v.75c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .743-.648l.007-.102V6h.75a.75.75 0 0 0 .743-.648L21 5.25a.75.75 0 0 0-.648-.743L20.25 4.5h-.75v-.75a.75.75 0 0 0-.648-.743L18.75 3z"/></svg> </template>
CSS
.icon-wand-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%22m11.405%209.465l-8.707%208.714a2.27%202.27%200%200%200%203.211%203.208l8.706-8.712zm5.447%205.542L16.75%2015a.75.75%200%200%200-.743.648L16%2015.75v.75h-.75a.75.75%200%200%200-.743.648l-.007.102c0%20.38.282.694.648.743l.102.007H16v.75c0%20.38.282.694.648.743l.102.007a.75.75%200%200%200%20.743-.648l.007-.102V18h.75a.75.75%200%200%200%20.743-.648L19%2017.25a.75.75%200%200%200-.648-.743l-.102-.007h-.75v-.75a.75.75%200%200%200-.648-.743L16.75%2015zm-3.538-7.442l-.136.126l-.712.713l3.21%203.21l.712-.714a2.25%202.25%200%200%200-.001-3.182l-.157-.146a2.25%202.25%200%200%200-2.916-.007M6.852%205.007L6.75%205a.75.75%200%200%200-.743.648L6%205.75v.75h-.75a.75.75%200%200%200-.743.648L4.5%207.25c0%20.38.282.693.648.743L5.25%208H6v.75c0%20.38.282.693.648.743l.102.007a.75.75%200%200%200%20.743-.648L7.5%208.75V8h.75a.75.75%200%200%200%20.743-.648L9%207.25a.75.75%200%200%200-.648-.743L8.25%206.5H7.5v-.75a.75.75%200%200%200-.648-.743L6.75%205zm12-2L18.75%203a.75.75%200%200%200-.743.648L18%203.75v.75h-.75a.75.75%200%200%200-.743.648l-.007.102c0%20.38.282.693.648.743L17.25%206H18v.75c0%20.38.282.693.648.743l.102.007a.75.75%200%200%200%20.743-.648l.007-.102V6h.75a.75.75%200%200%200%20.743-.648L21%205.25a.75.75%200%200%200-.648-.743L20.25%204.5h-.75v-.75a.75.75%200%200%200-.648-.743L18.75%203z%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%22m11.405%209.465l-8.707%208.714a2.27%202.27%200%200%200%203.211%203.208l8.706-8.712zm5.447%205.542L16.75%2015a.75.75%200%200%200-.743.648L16%2015.75v.75h-.75a.75.75%200%200%200-.743.648l-.007.102c0%20.38.282.694.648.743l.102.007H16v.75c0%20.38.282.694.648.743l.102.007a.75.75%200%200%200%20.743-.648l.007-.102V18h.75a.75.75%200%200%200%20.743-.648L19%2017.25a.75.75%200%200%200-.648-.743l-.102-.007h-.75v-.75a.75.75%200%200%200-.648-.743L16.75%2015zm-3.538-7.442l-.136.126l-.712.713l3.21%203.21l.712-.714a2.25%202.25%200%200%200-.001-3.182l-.157-.146a2.25%202.25%200%200%200-2.916-.007M6.852%205.007L6.75%205a.75.75%200%200%200-.743.648L6%205.75v.75h-.75a.75.75%200%200%200-.743.648L4.5%207.25c0%20.38.282.693.648.743L5.25%208H6v.75c0%20.38.282.693.648.743l.102.007a.75.75%200%200%200%20.743-.648L7.5%208.75V8h.75a.75.75%200%200%200%20.743-.648L9%207.25a.75.75%200%200%200-.648-.743L8.25%206.5H7.5v-.75a.75.75%200%200%200-.648-.743L6.75%205zm12-2L18.75%203a.75.75%200%200%200-.743.648L18%203.75v.75h-.75a.75.75%200%200%200-.743.648l-.007.102c0%20.38.282.693.648.743L17.25%206H18v.75c0%20.38.282.693.648.743l.102.007a.75.75%200%200%200%20.743-.648l.007-.102V6h.75a.75.75%200%200%200%20.743-.648L21%205.25a.75.75%200%200%200-.648-.743L20.25%204.5h-.75v-.75a.75.75%200%200%200-.648-.743L18.75%203z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/wand-24-filled.svg?color=%231a73e8&size=48