Spray Can icon
Used to represent airbrush tooling. The Spray Can icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_spray_can_16_regular.svg
Spray Can icon in React
npm install @fluentui/react-icons
import { SprayCan16Regular } from "@fluentui/react-icons";
export function Example() {
return <SprayCan16Regular aria-label="Spray Can" />;
}Use the Spray Can icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { SprayCan16Regular, SprayCan16Filled } from "@fluentui/react-icons";
export function Example() {
return <SprayCan16Regular aria-label="Spray Can" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_spray_can_16_regular.svg" width="16" height="16" alt="Spray Can"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M9.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M11 2.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m2-3a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0m-3.03.87.02.07v.02l.01.04v6.75c0 .97-.78 1.75-1.75 1.75h-3.5C3.78 15 3 14.22 3 13.25V6.46l.01-.02.02-.07a1 1 0 0 1 .12-.22L5 4.29V2.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v1.8l1.85 1.85q.09.1.13.22M7 3H6v1h1zm.3 2H5.7l-1 1h3.6zm.95 9c.41 0 .75-.34.75-.75V7H4v6.25c0 .41.34.75.75.75z"/></svg>Details
| Name | Spray Can |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_spray_can_16_regular.svg |
| Filled file | ic_fluent_spray_can_16_filled.svg |
| React (Regular) | SprayCan16Regular |
| React (Filled) | SprayCan16Filled |
| License | MIT (© Microsoft Corporation) |