Warning Shield icon
Used as a general warning for tons of scenarios. The Warning Shield icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 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, 20 px
ic_fluent_warning_shield_20_regular.svg
Warning Shield icon in React
npm install @fluentui/react-icons
import { WarningShield20Regular } from "@fluentui/react-icons";
export function Example() {
return <WarningShield20Regular aria-label="Warning Shield" />;
}Use the Warning Shield 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 { WarningShield20Regular, WarningShield20Filled } from "@fluentui/react-icons";
export function Example() {
return <WarningShield20Regular aria-label="Warning Shield" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_warning_shield_20_regular.svg" width="20" height="20" alt="Warning Shield"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M15.12 10.96c.2-.19.56-.19.76 0 .5.49 1.48 1.26 2.68 1.41.24.04.44.22.44.44v2.11c0 2.84-2.78 3.87-3.39 4.06a.4.4 0 0 1-.22 0c-.6-.19-3.39-1.22-3.39-4.06v-2.1c0-.23.2-.41.44-.45a5 5 0 0 0 2.68-1.4m-7.75-7.4a3 3 0 0 1 5.26 0l3.51 6.4a1.6 1.6 0 0 0-1.16-.05l-3.23-5.87a2 2 0 0 0-3.5 0l-5.5 10A2 2 0 0 0 4.5 17h6.96q.27.57.65 1h-7.6a3 3 0 0 1-2.63-4.44zM10 12.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m0-6.25c.28 0 .5.22.5.5v4a.5.5 0 0 1-1 0V7c0-.28.22-.5.5-.5"/></svg>Details
| Name | Warning Shield |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_warning_shield_20_regular.svg |
| Filled file | ic_fluent_warning_shield_20_filled.svg |
| React (Regular) | WarningShield20Regular |
| React (Filled) | WarningShield20Filled |
| License | MIT (© Microsoft Corporation) |