Safety
Red flag icon
Also known as: Warnsignal, Red Flag · red-flag.svg
A flag on a pole — a red flag or warning sign that needs attention. Use it to mark urgent findings, alerts and triage priorities.
Red flagsAlertsTriageUrgent findings
Weight
PNG size
px
Exports use the selected weight and currentColor — they inherit your text color. Free for commercial & educational use, no attribution required.
Use the Red flag icon in code
Paste it straight into your project. It uses currentColor, so it inherits your text color, and scales without blurring.
Inline SVG · HTML
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" stroke-width="2" stroke-linejoin="miter" stroke-linecap="butt">
<line x1="15" y1="7" x2="15" y2="42"/><path d="M15 9 L37 14 L15 21 Z"/>
</svg>React component · JSX
export function IconRedFlag(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<line x1="15" y1="7" x2="15" y2="42"/><path d="M15 9 L37 14 L15 21 Z"/>
</svg>
);
}