underweight icon
underweight-outline from Health Icons by Resolve to Save Lives · Outline · Conditions · MIT Free for personal and commercial use.
- Name
- underweight-outline
- Set
- Health Icons
- Style
- Outline
- Category
- Conditions
- Viewbox
- 48×48
- License
- MIT
- Aliases
- underweight2x-outline
3 other variants in Health Icons
More conditions icons from Health Icons
Use the underweight icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M20 8.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M24.5 6a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5m5.448 11.338c-4.262-1.148-7.642-1.098-11.895.036a.5.5 0 0 0-.219.124c-.387.374-.679 1.001-.912 1.667c-.242.69-.449 1.507-.627 2.337a73 73 0 0 0-.606 3.337l-.001.008c-.068.412-.129.78-.18 1.064a.5.5 0 1 0 .984.178q.094-.522.204-1.208l.002-.01c.152-.928.336-2.043.575-3.159c.174-.812.37-1.584.592-2.216q.159-.453.324-.777l.207-.404l.441-.11q.623-.156 1.224-.277l.906-.183l2.096 7.334l-2.563 5.638V41.5a.5.5 0 0 0 1 0v-12h5v12a.5.5 0 0 0 1 0V30.717l-2.563-5.638l2.105-7.365l.903.18q.675.134 1.376.313l.345.088l.212.286c.152.207.314.5.473.913c.238.622.417 1.385.56 2.195c.142.808.244 1.645.334 2.413l.028.236c.079.672.151 1.29.235 1.751a.5.5 0 0 0 .984-.178a30 30 0 0 1-.224-1.674l-.03-.251c-.09-.769-.195-1.63-.342-2.47c-.147-.837-.34-1.67-.612-2.38c-.266-.696-.635-1.343-1.179-1.725a.5.5 0 0 0-.157-.073m-12.41-1.896c4.573-1.22 8.31-1.28 12.93-.035c.281.075.547.2.785.367c1.036.726 1.585 1.828 1.9 2.647c.337.882.556 1.86.713 2.749c.158.901.269 1.814.36 2.583l.025.218v.009c.083.703.143 1.213.209 1.573a2.5 2.5 0 1 1-4.92.894a32 32 0 0 1-.25-1.853l-.03-.259a41 41 0 0 0-.319-2.3c-.133-.758-.286-1.377-.458-1.826l-.043-.108l-1.378 4.82l2.438 5.362V41.5a2.5 2.5 0 1 1-5 0v-10h-1v10a2.5 2.5 0 1 1-5 0V30.283l2.437-5.362l-1.279-4.478a19 19 0 0 0-.43 1.688a64 64 0 0 0-.558 3.074v.006c-.075.449-.144.87-.21 1.236a2.5 2.5 0 1 1-4.92-.894c.048-.265.107-.617.176-1.04l.001-.008c.158-.96.369-2.239.623-3.422c.185-.865.412-1.776.694-2.58c.246-.7.662-1.72 1.41-2.443a2.5 2.5 0 0 1 1.094-.618" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function HealthiconsUnderweightOutline(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fillRule="evenodd" d="M20 8.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M24.5 6a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5m5.448 11.338c-4.262-1.148-7.642-1.098-11.895.036a.5.5 0 0 0-.219.124c-.387.374-.679 1.001-.912 1.667c-.242.69-.449 1.507-.627 2.337a73 73 0 0 0-.606 3.337l-.001.008c-.068.412-.129.78-.18 1.064a.5.5 0 1 0 .984.178q.094-.522.204-1.208l.002-.01c.152-.928.336-2.043.575-3.159c.174-.812.37-1.584.592-2.216q.159-.453.324-.777l.207-.404l.441-.11q.623-.156 1.224-.277l.906-.183l2.096 7.334l-2.563 5.638V41.5a.5.5 0 0 0 1 0v-12h5v12a.5.5 0 0 0 1 0V30.717l-2.563-5.638l2.105-7.365l.903.18q.675.134 1.376.313l.345.088l.212.286c.152.207.314.5.473.913c.238.622.417 1.385.56 2.195c.142.808.244 1.645.334 2.413l.028.236c.079.672.151 1.29.235 1.751a.5.5 0 0 0 .984-.178a30 30 0 0 1-.224-1.674l-.03-.251c-.09-.769-.195-1.63-.342-2.47c-.147-.837-.34-1.67-.612-2.38c-.266-.696-.635-1.343-1.179-1.725a.5.5 0 0 0-.157-.073m-12.41-1.896c4.573-1.22 8.31-1.28 12.93-.035c.281.075.547.2.785.367c1.036.726 1.585 1.828 1.9 2.647c.337.882.556 1.86.713 2.749c.158.901.269 1.814.36 2.583l.025.218v.009c.083.703.143 1.213.209 1.573a2.5 2.5 0 1 1-4.92.894a32 32 0 0 1-.25-1.853l-.03-.259a41 41 0 0 0-.319-2.3c-.133-.758-.286-1.377-.458-1.826l-.043-.108l-1.378 4.82l2.438 5.362V41.5a2.5 2.5 0 1 1-5 0v-10h-1v10a2.5 2.5 0 1 1-5 0V30.283l2.437-5.362l-1.279-4.478a19 19 0 0 0-.43 1.688a64 64 0 0 0-.558 3.074v.006c-.075.449-.144.87-.21 1.236a2.5 2.5 0 1 1-4.92-.894c.048-.265.107-.617.176-1.04l.001-.008c.158-.96.369-2.239.623-3.422c.185-.865.412-1.776.694-2.58c.246-.7.662-1.72 1.41-2.443a2.5 2.5 0 0 1 1.094-.618" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M20 8.5a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M24.5 6a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5m5.448 11.338c-4.262-1.148-7.642-1.098-11.895.036a.5.5 0 0 0-.219.124c-.387.374-.679 1.001-.912 1.667c-.242.69-.449 1.507-.627 2.337a73 73 0 0 0-.606 3.337l-.001.008c-.068.412-.129.78-.18 1.064a.5.5 0 1 0 .984.178q.094-.522.204-1.208l.002-.01c.152-.928.336-2.043.575-3.159c.174-.812.37-1.584.592-2.216q.159-.453.324-.777l.207-.404l.441-.11q.623-.156 1.224-.277l.906-.183l2.096 7.334l-2.563 5.638V41.5a.5.5 0 0 0 1 0v-12h5v12a.5.5 0 0 0 1 0V30.717l-2.563-5.638l2.105-7.365l.903.18q.675.134 1.376.313l.345.088l.212.286c.152.207.314.5.473.913c.238.622.417 1.385.56 2.195c.142.808.244 1.645.334 2.413l.028.236c.079.672.151 1.29.235 1.751a.5.5 0 0 0 .984-.178a30 30 0 0 1-.224-1.674l-.03-.251c-.09-.769-.195-1.63-.342-2.47c-.147-.837-.34-1.67-.612-2.38c-.266-.696-.635-1.343-1.179-1.725a.5.5 0 0 0-.157-.073m-12.41-1.896c4.573-1.22 8.31-1.28 12.93-.035c.281.075.547.2.785.367c1.036.726 1.585 1.828 1.9 2.647c.337.882.556 1.86.713 2.749c.158.901.269 1.814.36 2.583l.025.218v.009c.083.703.143 1.213.209 1.573a2.5 2.5 0 1 1-4.92.894a32 32 0 0 1-.25-1.853l-.03-.259a41 41 0 0 0-.319-2.3c-.133-.758-.286-1.377-.458-1.826l-.043-.108l-1.378 4.82l2.438 5.362V41.5a2.5 2.5 0 1 1-5 0v-10h-1v10a2.5 2.5 0 1 1-5 0V30.283l2.437-5.362l-1.279-4.478a19 19 0 0 0-.43 1.688a64 64 0 0 0-.558 3.074v.006c-.075.449-.144.87-.21 1.236a2.5 2.5 0 1 1-4.92-.894c.048-.265.107-.617.176-1.04l.001-.008c.158-.96.369-2.239.623-3.422c.185-.865.412-1.776.694-2.58c.246-.7.662-1.72 1.41-2.443a2.5 2.5 0 0 1 1.094-.618" clip-rule="evenodd"/></svg> </template>
CSS
.icon-underweight-outline {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M20%208.5a4.5%204.5%200%201%201%209%200a4.5%204.5%200%200%201-9%200M24.5%206a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5m5.448%2011.338c-4.262-1.148-7.642-1.098-11.895.036a.5.5%200%200%200-.219.124c-.387.374-.679%201.001-.912%201.667c-.242.69-.449%201.507-.627%202.337a73%2073%200%200%200-.606%203.337l-.001.008c-.068.412-.129.78-.18%201.064a.5.5%200%201%200%20.984.178q.094-.522.204-1.208l.002-.01c.152-.928.336-2.043.575-3.159c.174-.812.37-1.584.592-2.216q.159-.453.324-.777l.207-.404l.441-.11q.623-.156%201.224-.277l.906-.183l2.096%207.334l-2.563%205.638V41.5a.5.5%200%200%200%201%200v-12h5v12a.5.5%200%200%200%201%200V30.717l-2.563-5.638l2.105-7.365l.903.18q.675.134%201.376.313l.345.088l.212.286c.152.207.314.5.473.913c.238.622.417%201.385.56%202.195c.142.808.244%201.645.334%202.413l.028.236c.079.672.151%201.29.235%201.751a.5.5%200%200%200%20.984-.178a30%2030%200%200%201-.224-1.674l-.03-.251c-.09-.769-.195-1.63-.342-2.47c-.147-.837-.34-1.67-.612-2.38c-.266-.696-.635-1.343-1.179-1.725a.5.5%200%200%200-.157-.073m-12.41-1.896c4.573-1.22%208.31-1.28%2012.93-.035c.281.075.547.2.785.367c1.036.726%201.585%201.828%201.9%202.647c.337.882.556%201.86.713%202.749c.158.901.269%201.814.36%202.583l.025.218v.009c.083.703.143%201.213.209%201.573a2.5%202.5%200%201%201-4.92.894a32%2032%200%200%201-.25-1.853l-.03-.259a41%2041%200%200%200-.319-2.3c-.133-.758-.286-1.377-.458-1.826l-.043-.108l-1.378%204.82l2.438%205.362V41.5a2.5%202.5%200%201%201-5%200v-10h-1v10a2.5%202.5%200%201%201-5%200V30.283l2.437-5.362l-1.279-4.478a19%2019%200%200%200-.43%201.688a64%2064%200%200%200-.558%203.074v.006c-.075.449-.144.87-.21%201.236a2.5%202.5%200%201%201-4.92-.894c.048-.265.107-.617.176-1.04l.001-.008c.158-.96.369-2.239.623-3.422c.185-.865.412-1.776.694-2.58c.246-.7.662-1.72%201.41-2.443a2.5%202.5%200%200%201%201.094-.618%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M20%208.5a4.5%204.5%200%201%201%209%200a4.5%204.5%200%200%201-9%200M24.5%206a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5m5.448%2011.338c-4.262-1.148-7.642-1.098-11.895.036a.5.5%200%200%200-.219.124c-.387.374-.679%201.001-.912%201.667c-.242.69-.449%201.507-.627%202.337a73%2073%200%200%200-.606%203.337l-.001.008c-.068.412-.129.78-.18%201.064a.5.5%200%201%200%20.984.178q.094-.522.204-1.208l.002-.01c.152-.928.336-2.043.575-3.159c.174-.812.37-1.584.592-2.216q.159-.453.324-.777l.207-.404l.441-.11q.623-.156%201.224-.277l.906-.183l2.096%207.334l-2.563%205.638V41.5a.5.5%200%200%200%201%200v-12h5v12a.5.5%200%200%200%201%200V30.717l-2.563-5.638l2.105-7.365l.903.18q.675.134%201.376.313l.345.088l.212.286c.152.207.314.5.473.913c.238.622.417%201.385.56%202.195c.142.808.244%201.645.334%202.413l.028.236c.079.672.151%201.29.235%201.751a.5.5%200%200%200%20.984-.178a30%2030%200%200%201-.224-1.674l-.03-.251c-.09-.769-.195-1.63-.342-2.47c-.147-.837-.34-1.67-.612-2.38c-.266-.696-.635-1.343-1.179-1.725a.5.5%200%200%200-.157-.073m-12.41-1.896c4.573-1.22%208.31-1.28%2012.93-.035c.281.075.547.2.785.367c1.036.726%201.585%201.828%201.9%202.647c.337.882.556%201.86.713%202.749c.158.901.269%201.814.36%202.583l.025.218v.009c.083.703.143%201.213.209%201.573a2.5%202.5%200%201%201-4.92.894a32%2032%200%200%201-.25-1.853l-.03-.259a41%2041%200%200%200-.319-2.3c-.133-.758-.286-1.377-.458-1.826l-.043-.108l-1.378%204.82l2.438%205.362V41.5a2.5%202.5%200%201%201-5%200v-10h-1v10a2.5%202.5%200%201%201-5%200V30.283l2.437-5.362l-1.279-4.478a19%2019%200%200%200-.43%201.688a64%2064%200%200%200-.558%203.074v.006c-.075.449-.144.87-.21%201.236a2.5%202.5%200%201%201-4.92-.894c.048-.265.107-.617.176-1.04l.001-.008c.158-.96.369-2.239.623-3.422c.185-.865.412-1.776.694-2.58c.246-.7.662-1.72%201.41-2.443a2.5%202.5%200%200%201%201.094-.618%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/underweight-outline.svg?color=%231a73e8&size=48