paint brush icon
paint-brush-24 from Fluent UI System Color Icons by Microsoft Corporation · 24 · MIT Free for personal and commercial use.
- Name
- paint-brush-24
- Set
- Fluent UI System Color Icons
- Style
- 24
- Viewbox
- 24×24
- License
- MIT
4 other variants in Fluent UI System Color Icons
The same icon in other sets
Use the paint brush icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path fill="url(#SVG51hR6dfE)" d="M19 2.75a.75.75 0 0 0-.75-.75H5.75a.75.75 0 0 0-.75.75v9.75h14z"/><path fill="url(#SVGfgmtEbPR)" d="M5 12v2.252a2.25 2.25 0 0 0 2.25 2.25H10V20a2 2 0 1 0 4 0v-3.498h2.75a2.25 2.25 0 0 0 2.25-2.25V12z"/><path fill="url(#SVGgFP7ruQT)" d="M5 12a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.5H5z"/><path fill="url(#SVGJ1EEVdzs)" d="M12.5 5.252V2H14v3.252a.75.75 0 0 1-1.5 0"/><path fill="url(#SVGJ1EEVdzs)" d="M15 6.251V2h1.5v4.251a.75.75 0 0 1-1.5 0"/><defs><linearGradient id="SVG51hR6dfE" x1="9.2" x2="15.448" y1="-1.281" y2="16.05" gradientUnits="userSpaceOnUse"><stop offset=".085" stop-color="#ffcd0f"/><stop offset=".991" stop-color="#e67505"/></linearGradient><linearGradient id="SVGfgmtEbPR" x1="5" x2="5.857" y1="8.471" y2="24.589" gradientUnits="userSpaceOnUse"><stop offset=".125" stop-color="#ac80ff"/><stop offset="1" stop-color="#5750e2"/></linearGradient><linearGradient id="SVGgFP7ruQT" x1="8.329" x2="8.443" y1="11.199" y2="12.891" gradientUnits="userSpaceOnUse"><stop offset=".125" stop-color="#9c6cfe"/><stop offset="1" stop-color="#5750e2"/></linearGradient><linearGradient id="SVGJ1EEVdzs" x1="12.5" x2="16.548" y1=".611" y2="5.929" gradientUnits="userSpaceOnUse"><stop stop-color="#ff921f"/><stop offset="1" stop-color="#eb4824"/></linearGradient></defs></g></svg>
React
import type { SVGProps } from "react";
export function FluentColorPaintBrush24(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path fill="url(#SVG51hR6dfE)" d="M19 2.75a.75.75 0 0 0-.75-.75H5.75a.75.75 0 0 0-.75.75v9.75h14z"/><path fill="url(#SVGfgmtEbPR)" d="M5 12v2.252a2.25 2.25 0 0 0 2.25 2.25H10V20a2 2 0 1 0 4 0v-3.498h2.75a2.25 2.25 0 0 0 2.25-2.25V12z"/><path fill="url(#SVGgFP7ruQT)" d="M5 12a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.5H5z"/><path fill="url(#SVGJ1EEVdzs)" d="M12.5 5.252V2H14v3.252a.75.75 0 0 1-1.5 0"/><path fill="url(#SVGJ1EEVdzs)" d="M15 6.251V2h1.5v4.251a.75.75 0 0 1-1.5 0"/><defs><linearGradient id="SVG51hR6dfE" x1="9.2" x2="15.448" y1="-1.281" y2="16.05" gradientUnits="userSpaceOnUse"><stop offset=".085" stopColor="#ffcd0f"/><stop offset=".991" stopColor="#e67505"/></linearGradient><linearGradient id="SVGfgmtEbPR" x1="5" x2="5.857" y1="8.471" y2="24.589" gradientUnits="userSpaceOnUse"><stop offset=".125" stopColor="#ac80ff"/><stop offset="1" stopColor="#5750e2"/></linearGradient><linearGradient id="SVGgFP7ruQT" x1="8.329" x2="8.443" y1="11.199" y2="12.891" gradientUnits="userSpaceOnUse"><stop offset=".125" stopColor="#9c6cfe"/><stop offset="1" stopColor="#5750e2"/></linearGradient><linearGradient id="SVGJ1EEVdzs" x1="12.5" x2="16.548" y1=".611" y2="5.929" gradientUnits="userSpaceOnUse"><stop stopColor="#ff921f"/><stop offset="1" stopColor="#eb4824"/></linearGradient></defs></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path fill="url(#SVG51hR6dfE)" d="M19 2.75a.75.75 0 0 0-.75-.75H5.75a.75.75 0 0 0-.75.75v9.75h14z"/><path fill="url(#SVGfgmtEbPR)" d="M5 12v2.252a2.25 2.25 0 0 0 2.25 2.25H10V20a2 2 0 1 0 4 0v-3.498h2.75a2.25 2.25 0 0 0 2.25-2.25V12z"/><path fill="url(#SVGgFP7ruQT)" d="M5 12a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.5H5z"/><path fill="url(#SVGJ1EEVdzs)" d="M12.5 5.252V2H14v3.252a.75.75 0 0 1-1.5 0"/><path fill="url(#SVGJ1EEVdzs)" d="M15 6.251V2h1.5v4.251a.75.75 0 0 1-1.5 0"/><defs><linearGradient id="SVG51hR6dfE" x1="9.2" x2="15.448" y1="-1.281" y2="16.05" gradientUnits="userSpaceOnUse"><stop offset=".085" stop-color="#ffcd0f"/><stop offset=".991" stop-color="#e67505"/></linearGradient><linearGradient id="SVGfgmtEbPR" x1="5" x2="5.857" y1="8.471" y2="24.589" gradientUnits="userSpaceOnUse"><stop offset=".125" stop-color="#ac80ff"/><stop offset="1" stop-color="#5750e2"/></linearGradient><linearGradient id="SVGgFP7ruQT" x1="8.329" x2="8.443" y1="11.199" y2="12.891" gradientUnits="userSpaceOnUse"><stop offset=".125" stop-color="#9c6cfe"/><stop offset="1" stop-color="#5750e2"/></linearGradient><linearGradient id="SVGJ1EEVdzs" x1="12.5" x2="16.548" y1=".611" y2="5.929" gradientUnits="userSpaceOnUse"><stop stop-color="#ff921f"/><stop offset="1" stop-color="#eb4824"/></linearGradient></defs></g></svg> </template>
CSS
.icon-paint-brush-24 {
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%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22url(%23SVG51hR6dfE)%22%20d%3D%22M19%202.75a.75.75%200%200%200-.75-.75H5.75a.75.75%200%200%200-.75.75v9.75h14z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGfgmtEbPR)%22%20d%3D%22M5%2012v2.252a2.25%202.25%200%200%200%202.25%202.25H10V20a2%202%200%201%200%204%200v-3.498h2.75a2.25%202.25%200%200%200%202.25-2.25V12z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGgFP7ruQT)%22%20d%3D%22M5%2012a1%201%200%200%201%201-1h12a1%201%200%200%201%201%201v.5H5z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGJ1EEVdzs)%22%20d%3D%22M12.5%205.252V2H14v3.252a.75.75%200%200%201-1.5%200%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGJ1EEVdzs)%22%20d%3D%22M15%206.251V2h1.5v4.251a.75.75%200%200%201-1.5%200%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22SVG51hR6dfE%22%20x1%3D%229.2%22%20x2%3D%2215.448%22%20y1%3D%22-1.281%22%20y2%3D%2216.05%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.085%22%20stop-color%3D%22%23ffcd0f%22%2F%3E%3Cstop%20offset%3D%22.991%22%20stop-color%3D%22%23e67505%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGfgmtEbPR%22%20x1%3D%225%22%20x2%3D%225.857%22%20y1%3D%228.471%22%20y2%3D%2224.589%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.125%22%20stop-color%3D%22%23ac80ff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%235750e2%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGgFP7ruQT%22%20x1%3D%228.329%22%20x2%3D%228.443%22%20y1%3D%2211.199%22%20y2%3D%2212.891%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.125%22%20stop-color%3D%22%239c6cfe%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%235750e2%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGJ1EEVdzs%22%20x1%3D%2212.5%22%20x2%3D%2216.548%22%20y1%3D%22.611%22%20y2%3D%225.929%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23ff921f%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23eb4824%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fg%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%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22url(%23SVG51hR6dfE)%22%20d%3D%22M19%202.75a.75.75%200%200%200-.75-.75H5.75a.75.75%200%200%200-.75.75v9.75h14z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGfgmtEbPR)%22%20d%3D%22M5%2012v2.252a2.25%202.25%200%200%200%202.25%202.25H10V20a2%202%200%201%200%204%200v-3.498h2.75a2.25%202.25%200%200%200%202.25-2.25V12z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGgFP7ruQT)%22%20d%3D%22M5%2012a1%201%200%200%201%201-1h12a1%201%200%200%201%201%201v.5H5z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGJ1EEVdzs)%22%20d%3D%22M12.5%205.252V2H14v3.252a.75.75%200%200%201-1.5%200%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGJ1EEVdzs)%22%20d%3D%22M15%206.251V2h1.5v4.251a.75.75%200%200%201-1.5%200%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22SVG51hR6dfE%22%20x1%3D%229.2%22%20x2%3D%2215.448%22%20y1%3D%22-1.281%22%20y2%3D%2216.05%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.085%22%20stop-color%3D%22%23ffcd0f%22%2F%3E%3Cstop%20offset%3D%22.991%22%20stop-color%3D%22%23e67505%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGfgmtEbPR%22%20x1%3D%225%22%20x2%3D%225.857%22%20y1%3D%228.471%22%20y2%3D%2224.589%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.125%22%20stop-color%3D%22%23ac80ff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%235750e2%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGgFP7ruQT%22%20x1%3D%228.329%22%20x2%3D%228.443%22%20y1%3D%2211.199%22%20y2%3D%2212.891%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.125%22%20stop-color%3D%22%239c6cfe%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%235750e2%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGJ1EEVdzs%22%20x1%3D%2212.5%22%20x2%3D%2216.548%22%20y1%3D%22.611%22%20y2%3D%225.929%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23ff921f%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23eb4824%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent-color/paint-brush-24.svg?color=%231a73e8&size=48