Safety
Violence icon
Also known as: Gewalt, Aggression · violence.svg
A clenched fist — violence, aggression or assault. Use it in safety, risk-assessment and trauma contexts where this needs to be named clearly.
ViolenceAggressionSafetyRisk assessment
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 Violence 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">
<path d="M14 23 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 V37 q0 3 -3 3 H17 q-3 0 -3 -3 Z"/><line x1="19" y1="22.5" x2="19" y2="30"/><line x1="24" y1="22.5" x2="24" y2="30"/><line x1="29" y1="22.5" x2="29" y2="30"/><path d="M14 30 q-4 0 -4 3 q0 3 4 3"/>
</svg>React component · JSX
export function IconViolence(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<path d="M14 23 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 q0 -4 2.5 -4 q2.5 0 2.5 4 V37 q0 3 -3 3 H17 q-3 0 -3 -3 Z"/><line x1="19" y1="22.5" x2="19" y2="30"/><line x1="24" y1="22.5" x2="24" y2="30"/><line x1="29" y1="22.5" x2="29" y2="30"/><path d="M14 30 q-4 0 -4 3 q0 3 4 3"/>
</svg>
);
}