Stamp icon
The Stamp icon is part of Microsoft's Fluent UI System Icons, available here in the light style on a 32 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Light
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.
Light, 32 px
ic_fluent_stamp_32_light.svg
Stamp icon in React
npm install @fluentui/react-icons
import { Stamp32Light } from "@fluentui/react-icons";
export function Example() {
return <Stamp32Light aria-label="Stamp" />;
}Use the Stamp 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 { Stamp32Light } from "@fluentui/react-icons";
export function Example() {
return <Stamp32Light aria-label="Stamp" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_stamp_32_light.svg" width="32" height="32" alt="Stamp"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M22.17 4.17a4 4 0 1 1 5.66 5.66c-.73.72-2.4 1.88-3.83 2.84l-2.2 1.42 3.22 3.23a4.5 4.5 0 0 1 0 6.36l-3.46 3.47a1.5 1.5 0 0 1-2.12 0l-.94-.94-2.94 2.94a1.5 1.5 0 0 1-2.12 0L2.85 18.56a1.5 1.5 0 0 1 0-2.12L5.8 13.5l-.94-.94a1.5 1.5 0 0 1 0-2.12l3.47-3.47a4.5 4.5 0 0 1 6.36 0l3.23 3.23L19.33 8c.96-1.44 2.12-3.1 2.84-3.83m-1.1 9.2 2.38-1.54a31 31 0 0 0 3.67-2.7 3 3 0 1 0-4.24-4.25c-.64.64-1.74 2.21-2.71 3.67l-1.54 2.38zm-7.1-5.69a3.5 3.5 0 0 0-4.95 0l-3.46 3.47a.5.5 0 0 0 0 .7l14.59 14.59c.2.2.5.2.7 0l3.47-3.47a3.5 3.5 0 0 0 0-4.94zm-10.4 9.47a.5.5 0 0 0 0 .7l10.58 10.59c.2.2.5.2.7 0l2.94-2.94L6.5 14.2z"/></svg>Details
| Name | Stamp |
|---|---|
| Styles | Light |
| Sizes | 32 px |
| Light file | ic_fluent_stamp_32_light.svg |
| React (Light) | Stamp32Light |
| License | MIT (© Microsoft Corporation) |