Symptoms
Weight loss icon
Also known as: Gewichtsverlust, Abnahme · weight-loss.svg
A scale with a downward arrow — unintentional weight loss. Use it in nutrition and metabolism topics, and on red-flag or symptom lists.
Weight lossNutritionMetabolismRed flags
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 Weight loss 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">
<rect x="9" y="17" width="30" height="22" rx="3"/><circle cx="24" cy="28" r="5"/><line x1="24" y1="28" x2="20.5" y2="24.5"/><path d="M33 5 V14 M30 11 L33 14 L36 11"/>
</svg>React component · JSX
export function IconWeightLoss(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<rect x="9" y="17" width="30" height="22" rx="3"/><circle cx="24" cy="28" r="5"/><line x1="24" y1="28" x2="20.5" y2="24.5"/><path d="M33 5 V14 M30 11 L33 14 L36 11"/>
</svg>
);
}