Anatomy
Abdomen icon
Also known as: Bauch, Abdomen · abdomen.svg
A torso midsection with a navel — the abdomen and stomach region. A solid anatomy mark for GI topics, examination content and patient education.
AbdomenGastrointestinalAnatomyExamination
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 Abdomen 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"/><circle cx="24" cy="30" r="2"/>
</svg>React component · JSX
export function IconAbdomen(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"/><circle cx="24" cy="30" r="2"/>
</svg>
);
}