Anatomy
Abdominal quadrants icon
Also known as: Quadranten, Bauchuntersuchung · abdominal-quadrants.svg
The abdomen divided into four quadrants — the classic exam reference for RUQ, LUQ, RLQ and LLQ. Built for physical-exam teaching and clinical documentation.
Abdominal examRUQ / LUQTeachingDocumentation
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 Abdominal quadrants 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="M16 8 C13 12 11 18 11 26 C11 33 14 39 17 42 L31 42 C34 39 37 33 37 26 C37 18 35 12 32 8 C28 10 20 10 16 8 Z"/><line x1="24" y1="11" x2="24" y2="41"/><line x1="12" y1="26" x2="36" y2="26"/><circle cx="24" cy="26" r="2.4" fill="currentColor" stroke="none"/>
</svg>React component · JSX
export function IconAbdominalQuadrants(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="M16 8 C13 12 11 18 11 26 C11 33 14 39 17 42 L31 42 C34 39 37 33 37 26 C37 18 35 12 32 8 C28 10 20 10 16 8 Z"/><line x1="24" y1="11" x2="24" y2="41"/><line x1="12" y1="26" x2="36" y2="26"/><circle cx="24" cy="26" r="2.4" fill="currentColor" stroke="none"/>
</svg>
);
}