document sparkle icon
document-sparkle-32-regular from Fluent UI System Icons by Microsoft Corporation · 32 Regular · MIT Free for personal and commercial use.
- Name
- document-sparkle-32-regular
- Set
- Fluent UI System Icons
- Style
- 32 Regular
- Viewbox
- 32×32
- License
- MIT
15 other variants in Fluent UI System Icons
document-sparkle-16-filleddocument-sparkle-16-regulardocument-sparkle-20-filleddocument-sparkle-20-regulardocument-sparkle-24-filleddocument-sparkle-24-lightdocument-sparkle-24-regulardocument-sparkle-28-filleddocument-sparkle-28-lightdocument-sparkle-28-regulardocument-sparkle-32-filleddocument-sparkle-32-lightdocument-sparkle-48-filleddocument-sparkle-48-lightdocument-sparkle-48-regular
Related icons in Fluent UI System Icons
document-100-16-filleddocument-add-16-filleddocument-arrow-down-16-filleddocument-arrow-down-off-20-filleddocument-arrow-left-16-filleddocument-arrow-right-16-filleddocument-arrow-up-16-filleddocument-autosave-24-regulardocument-border-20-filleddocument-border-print-20-filleddocument-briefcase-16-filleddocument-broken-20-filleddocument-bullet-list-16-filleddocument-bullet-list-arrow-left-16-filleddocument-bullet-list-clock-20-filleddocument-bullet-list-cube-16-filleddocument-bullet-list-multiple-20-filleddocument-bullet-list-off-20-filleddocument-catch-up-16-filleddocument-checkmark-16-filleddocument-chevron-double-20-filleddocument-code-16-filleddocument-contract-16-filleddocument-copy-16-filled
Use the document sparkle icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M7 13.586V5.25C7 4.56 7.56 4 8.25 4H16v5.75A3.25 3.25 0 0 0 19.25 13H25v13.75c0 .69-.56 1.25-1.25 1.25H16.5c0 .361-.105.715-.3 1.02a2 2 0 0 1-.94.69l-.881.29h9.371A3.25 3.25 0 0 0 27 26.75V11.932a3.25 3.25 0 0 0-.952-2.298l-6.682-6.682A3.25 3.25 0 0 0 17.068 2H8.25A3.25 3.25 0 0 0 5 5.25v8.84q.105-.092.22-.17A2.14 2.14 0 0 1 7 13.586m11-9.172L24.586 11H19.25c-.69 0-1.25-.56-1.25-1.25zM4.488 22.511a3.5 3.5 0 0 1 .837 1.363l.548 1.683a.664.664 0 0 0 1.254 0l.548-1.683a3.47 3.47 0 0 1 2.197-2.196l1.684-.547a.665.665 0 0 0 0-1.254l-.034-.008l-1.684-.547a3.47 3.47 0 0 1-2.197-2.196l-.547-1.683a.664.664 0 0 0-1.255 0l-.547 1.683l-.014.042a3.47 3.47 0 0 1-2.15 2.154l-1.684.547a.665.665 0 0 0 0 1.254l1.684.546c.513.171.979.46 1.36.842m9.333 4.847l.918.298l.019.004a.362.362 0 0 1 0 .684l-.919.298a1.9 1.9 0 0 0-1.198 1.198l-.299.918a.363.363 0 0 1-.684 0l-.299-.918a1.89 1.89 0 0 0-1.198-1.202l-.919-.298a.363.363 0 0 1 0-.684l.919-.298a1.9 1.9 0 0 0 1.18-1.198l.299-.918a.363.363 0 0 1 .684 0l.298.918a1.89 1.89 0 0 0 1.199 1.198"/></svg>
React
import type { SVGProps } from "react";
export function FluentDocumentSparkle32Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M7 13.586V5.25C7 4.56 7.56 4 8.25 4H16v5.75A3.25 3.25 0 0 0 19.25 13H25v13.75c0 .69-.56 1.25-1.25 1.25H16.5c0 .361-.105.715-.3 1.02a2 2 0 0 1-.94.69l-.881.29h9.371A3.25 3.25 0 0 0 27 26.75V11.932a3.25 3.25 0 0 0-.952-2.298l-6.682-6.682A3.25 3.25 0 0 0 17.068 2H8.25A3.25 3.25 0 0 0 5 5.25v8.84q.105-.092.22-.17A2.14 2.14 0 0 1 7 13.586m11-9.172L24.586 11H19.25c-.69 0-1.25-.56-1.25-1.25zM4.488 22.511a3.5 3.5 0 0 1 .837 1.363l.548 1.683a.664.664 0 0 0 1.254 0l.548-1.683a3.47 3.47 0 0 1 2.197-2.196l1.684-.547a.665.665 0 0 0 0-1.254l-.034-.008l-1.684-.547a3.47 3.47 0 0 1-2.197-2.196l-.547-1.683a.664.664 0 0 0-1.255 0l-.547 1.683l-.014.042a3.47 3.47 0 0 1-2.15 2.154l-1.684.547a.665.665 0 0 0 0 1.254l1.684.546c.513.171.979.46 1.36.842m9.333 4.847l.918.298l.019.004a.362.362 0 0 1 0 .684l-.919.298a1.9 1.9 0 0 0-1.198 1.198l-.299.918a.363.363 0 0 1-.684 0l-.299-.918a1.89 1.89 0 0 0-1.198-1.202l-.919-.298a.363.363 0 0 1 0-.684l.919-.298a1.9 1.9 0 0 0 1.18-1.198l.299-.918a.363.363 0 0 1 .684 0l.298.918a1.89 1.89 0 0 0 1.199 1.198"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M7 13.586V5.25C7 4.56 7.56 4 8.25 4H16v5.75A3.25 3.25 0 0 0 19.25 13H25v13.75c0 .69-.56 1.25-1.25 1.25H16.5c0 .361-.105.715-.3 1.02a2 2 0 0 1-.94.69l-.881.29h9.371A3.25 3.25 0 0 0 27 26.75V11.932a3.25 3.25 0 0 0-.952-2.298l-6.682-6.682A3.25 3.25 0 0 0 17.068 2H8.25A3.25 3.25 0 0 0 5 5.25v8.84q.105-.092.22-.17A2.14 2.14 0 0 1 7 13.586m11-9.172L24.586 11H19.25c-.69 0-1.25-.56-1.25-1.25zM4.488 22.511a3.5 3.5 0 0 1 .837 1.363l.548 1.683a.664.664 0 0 0 1.254 0l.548-1.683a3.47 3.47 0 0 1 2.197-2.196l1.684-.547a.665.665 0 0 0 0-1.254l-.034-.008l-1.684-.547a3.47 3.47 0 0 1-2.197-2.196l-.547-1.683a.664.664 0 0 0-1.255 0l-.547 1.683l-.014.042a3.47 3.47 0 0 1-2.15 2.154l-1.684.547a.665.665 0 0 0 0 1.254l1.684.546c.513.171.979.46 1.36.842m9.333 4.847l.918.298l.019.004a.362.362 0 0 1 0 .684l-.919.298a1.9 1.9 0 0 0-1.198 1.198l-.299.918a.363.363 0 0 1-.684 0l-.299-.918a1.89 1.89 0 0 0-1.198-1.202l-.919-.298a.363.363 0 0 1 0-.684l.919-.298a1.9 1.9 0 0 0 1.18-1.198l.299-.918a.363.363 0 0 1 .684 0l.298.918a1.89 1.89 0 0 0 1.199 1.198"/></svg> </template>
CSS
.icon-document-sparkle-32-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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7%2013.586V5.25C7%204.56%207.56%204%208.25%204H16v5.75A3.25%203.25%200%200%200%2019.25%2013H25v13.75c0%20.69-.56%201.25-1.25%201.25H16.5c0%20.361-.105.715-.3%201.02a2%202%200%200%201-.94.69l-.881.29h9.371A3.25%203.25%200%200%200%2027%2026.75V11.932a3.25%203.25%200%200%200-.952-2.298l-6.682-6.682A3.25%203.25%200%200%200%2017.068%202H8.25A3.25%203.25%200%200%200%205%205.25v8.84q.105-.092.22-.17A2.14%202.14%200%200%201%207%2013.586m11-9.172L24.586%2011H19.25c-.69%200-1.25-.56-1.25-1.25zM4.488%2022.511a3.5%203.5%200%200%201%20.837%201.363l.548%201.683a.664.664%200%200%200%201.254%200l.548-1.683a3.47%203.47%200%200%201%202.197-2.196l1.684-.547a.665.665%200%200%200%200-1.254l-.034-.008l-1.684-.547a3.47%203.47%200%200%201-2.197-2.196l-.547-1.683a.664.664%200%200%200-1.255%200l-.547%201.683l-.014.042a3.47%203.47%200%200%201-2.15%202.154l-1.684.547a.665.665%200%200%200%200%201.254l1.684.546c.513.171.979.46%201.36.842m9.333%204.847l.918.298l.019.004a.362.362%200%200%201%200%20.684l-.919.298a1.9%201.9%200%200%200-1.198%201.198l-.299.918a.363.363%200%200%201-.684%200l-.299-.918a1.89%201.89%200%200%200-1.198-1.202l-.919-.298a.363.363%200%200%201%200-.684l.919-.298a1.9%201.9%200%200%200%201.18-1.198l.299-.918a.363.363%200%200%201%20.684%200l.298.918a1.89%201.89%200%200%200%201.199%201.198%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7%2013.586V5.25C7%204.56%207.56%204%208.25%204H16v5.75A3.25%203.25%200%200%200%2019.25%2013H25v13.75c0%20.69-.56%201.25-1.25%201.25H16.5c0%20.361-.105.715-.3%201.02a2%202%200%200%201-.94.69l-.881.29h9.371A3.25%203.25%200%200%200%2027%2026.75V11.932a3.25%203.25%200%200%200-.952-2.298l-6.682-6.682A3.25%203.25%200%200%200%2017.068%202H8.25A3.25%203.25%200%200%200%205%205.25v8.84q.105-.092.22-.17A2.14%202.14%200%200%201%207%2013.586m11-9.172L24.586%2011H19.25c-.69%200-1.25-.56-1.25-1.25zM4.488%2022.511a3.5%203.5%200%200%201%20.837%201.363l.548%201.683a.664.664%200%200%200%201.254%200l.548-1.683a3.47%203.47%200%200%201%202.197-2.196l1.684-.547a.665.665%200%200%200%200-1.254l-.034-.008l-1.684-.547a3.47%203.47%200%200%201-2.197-2.196l-.547-1.683a.664.664%200%200%200-1.255%200l-.547%201.683l-.014.042a3.47%203.47%200%200%201-2.15%202.154l-1.684.547a.665.665%200%200%200%200%201.254l1.684.546c.513.171.979.46%201.36.842m9.333%204.847l.918.298l.019.004a.362.362%200%200%201%200%20.684l-.919.298a1.9%201.9%200%200%200-1.198%201.198l-.299.918a.363.363%200%200%201-.684%200l-.299-.918a1.89%201.89%200%200%200-1.198-1.202l-.919-.298a.363.363%200%200%201%200-.684l.919-.298a1.9%201.9%200%200%200%201.18-1.198l.299-.918a.363.363%200%200%201%20.684%200l.298.918a1.89%201.89%200%200%200%201.199%201.198%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/document-sparkle-32-regular.svg?color=%231a73e8&size=48