stomach-outline from Health Icons by Resolve to Save Lives · Outline · Body · MIT Free for personal and commercial use.

Name
stomach-outline
Set
Health Icons
Style
Outline
Category
Body
Viewbox
48×48
License
MIT

3 other variants in Health Icons

The same icon in other sets

More body icons from Health Icons

Use the stomach 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="M22.433 7.806c.02.562.125.893.293 1.092c.245.29.49.393.78.419c.339.03.77-.047 1.341-.225a21 21 0 0 0 .971-.336c.276-.1.569-.207.861-.303c.645-.213 1.383-.412 2.13-.412c4.803 0 7.652 3.75 9.528 7.097c2.304 4.11 2.207 9.241-.247 13.264c-1.614 2.646-3.677 4.938-6.805 6.154c-4.537 1.765-9.544 1.082-13.67-.955c-.918-.454-1.997.244-1.997 1.132V41h-2v-6.267c0-2.551 2.8-3.954 4.883-2.926c3.742 1.848 8.157 2.403 12.059.885c2.567-.998 4.334-2.892 5.823-5.332c2.077-3.406 2.16-7.765.21-11.244c-1.853-3.305-4.191-6.075-7.783-6.075c-.42 0-.91.115-1.504.311c-.263.087-.528.183-.808.284l-.094.035c-.309.111-.635.228-.961.33c-.638.199-1.374.373-2.113.308c-.789-.07-1.531-.407-2.134-1.123c-.605-.718-.736-1.606-.761-2.31c-.013-.361.002-.72.017-1.034l.007-.14c.013-.267.024-.49.024-.697l2-.01c0 .267-.014.554-.027.816l-.006.128c-.015.31-.026.596-.017.867m-8.575-1.3V6h2v.373c-.002 2.728-.004 5.028 1.267 7.17c.884 1.49 2.192 2.534 3.68 3.722l.663.531c1.802 1.458 2.19 3.437 1.574 5.17c-.59 1.666-2.08 3.045-3.912 3.57c-.985.281-1.92.49-2.766.679l-.58.13c-1.012.23-1.871.45-2.634.766c-1.44.595-2.616 1.562-3.559 3.873A8 8 0 0 0 9 34.994V41H7v-6.006c0-1.29.251-2.569.74-3.765c1.135-2.783 2.69-4.157 4.645-4.966c.933-.386 1.937-.636 2.954-.868l.611-.137a45 45 0 0 0 2.63-.645c1.247-.357 2.215-1.294 2.578-2.316c.338-.954.178-2.035-.948-2.946q-.308-.248-.63-.503c-1.467-1.166-3.09-2.454-4.175-4.284c-1.561-2.631-1.554-5.454-1.547-8.059" clip-rule="evenodd"/></svg>

React

import type { SVGProps } from "react";

export function HealthiconsStomachOutline(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="M22.433 7.806c.02.562.125.893.293 1.092c.245.29.49.393.78.419c.339.03.77-.047 1.341-.225a21 21 0 0 0 .971-.336c.276-.1.569-.207.861-.303c.645-.213 1.383-.412 2.13-.412c4.803 0 7.652 3.75 9.528 7.097c2.304 4.11 2.207 9.241-.247 13.264c-1.614 2.646-3.677 4.938-6.805 6.154c-4.537 1.765-9.544 1.082-13.67-.955c-.918-.454-1.997.244-1.997 1.132V41h-2v-6.267c0-2.551 2.8-3.954 4.883-2.926c3.742 1.848 8.157 2.403 12.059.885c2.567-.998 4.334-2.892 5.823-5.332c2.077-3.406 2.16-7.765.21-11.244c-1.853-3.305-4.191-6.075-7.783-6.075c-.42 0-.91.115-1.504.311c-.263.087-.528.183-.808.284l-.094.035c-.309.111-.635.228-.961.33c-.638.199-1.374.373-2.113.308c-.789-.07-1.531-.407-2.134-1.123c-.605-.718-.736-1.606-.761-2.31c-.013-.361.002-.72.017-1.034l.007-.14c.013-.267.024-.49.024-.697l2-.01c0 .267-.014.554-.027.816l-.006.128c-.015.31-.026.596-.017.867m-8.575-1.3V6h2v.373c-.002 2.728-.004 5.028 1.267 7.17c.884 1.49 2.192 2.534 3.68 3.722l.663.531c1.802 1.458 2.19 3.437 1.574 5.17c-.59 1.666-2.08 3.045-3.912 3.57c-.985.281-1.92.49-2.766.679l-.58.13c-1.012.23-1.871.45-2.634.766c-1.44.595-2.616 1.562-3.559 3.873A8 8 0 0 0 9 34.994V41H7v-6.006c0-1.29.251-2.569.74-3.765c1.135-2.783 2.69-4.157 4.645-4.966c.933-.386 1.937-.636 2.954-.868l.611-.137a45 45 0 0 0 2.63-.645c1.247-.357 2.215-1.294 2.578-2.316c.338-.954.178-2.035-.948-2.946q-.308-.248-.63-.503c-1.467-1.166-3.09-2.454-4.175-4.284c-1.561-2.631-1.554-5.454-1.547-8.059" 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="M22.433 7.806c.02.562.125.893.293 1.092c.245.29.49.393.78.419c.339.03.77-.047 1.341-.225a21 21 0 0 0 .971-.336c.276-.1.569-.207.861-.303c.645-.213 1.383-.412 2.13-.412c4.803 0 7.652 3.75 9.528 7.097c2.304 4.11 2.207 9.241-.247 13.264c-1.614 2.646-3.677 4.938-6.805 6.154c-4.537 1.765-9.544 1.082-13.67-.955c-.918-.454-1.997.244-1.997 1.132V41h-2v-6.267c0-2.551 2.8-3.954 4.883-2.926c3.742 1.848 8.157 2.403 12.059.885c2.567-.998 4.334-2.892 5.823-5.332c2.077-3.406 2.16-7.765.21-11.244c-1.853-3.305-4.191-6.075-7.783-6.075c-.42 0-.91.115-1.504.311c-.263.087-.528.183-.808.284l-.094.035c-.309.111-.635.228-.961.33c-.638.199-1.374.373-2.113.308c-.789-.07-1.531-.407-2.134-1.123c-.605-.718-.736-1.606-.761-2.31c-.013-.361.002-.72.017-1.034l.007-.14c.013-.267.024-.49.024-.697l2-.01c0 .267-.014.554-.027.816l-.006.128c-.015.31-.026.596-.017.867m-8.575-1.3V6h2v.373c-.002 2.728-.004 5.028 1.267 7.17c.884 1.49 2.192 2.534 3.68 3.722l.663.531c1.802 1.458 2.19 3.437 1.574 5.17c-.59 1.666-2.08 3.045-3.912 3.57c-.985.281-1.92.49-2.766.679l-.58.13c-1.012.23-1.871.45-2.634.766c-1.44.595-2.616 1.562-3.559 3.873A8 8 0 0 0 9 34.994V41H7v-6.006c0-1.29.251-2.569.74-3.765c1.135-2.783 2.69-4.157 4.645-4.966c.933-.386 1.937-.636 2.954-.868l.611-.137a45 45 0 0 0 2.63-.645c1.247-.357 2.215-1.294 2.578-2.316c.338-.954.178-2.035-.948-2.946q-.308-.248-.63-.503c-1.467-1.166-3.09-2.454-4.175-4.284c-1.561-2.631-1.554-5.454-1.547-8.059" clip-rule="evenodd"/></svg>
</template>

CSS

.icon-stomach-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%22M22.433%207.806c.02.562.125.893.293%201.092c.245.29.49.393.78.419c.339.03.77-.047%201.341-.225a21%2021%200%200%200%20.971-.336c.276-.1.569-.207.861-.303c.645-.213%201.383-.412%202.13-.412c4.803%200%207.652%203.75%209.528%207.097c2.304%204.11%202.207%209.241-.247%2013.264c-1.614%202.646-3.677%204.938-6.805%206.154c-4.537%201.765-9.544%201.082-13.67-.955c-.918-.454-1.997.244-1.997%201.132V41h-2v-6.267c0-2.551%202.8-3.954%204.883-2.926c3.742%201.848%208.157%202.403%2012.059.885c2.567-.998%204.334-2.892%205.823-5.332c2.077-3.406%202.16-7.765.21-11.244c-1.853-3.305-4.191-6.075-7.783-6.075c-.42%200-.91.115-1.504.311c-.263.087-.528.183-.808.284l-.094.035c-.309.111-.635.228-.961.33c-.638.199-1.374.373-2.113.308c-.789-.07-1.531-.407-2.134-1.123c-.605-.718-.736-1.606-.761-2.31c-.013-.361.002-.72.017-1.034l.007-.14c.013-.267.024-.49.024-.697l2-.01c0%20.267-.014.554-.027.816l-.006.128c-.015.31-.026.596-.017.867m-8.575-1.3V6h2v.373c-.002%202.728-.004%205.028%201.267%207.17c.884%201.49%202.192%202.534%203.68%203.722l.663.531c1.802%201.458%202.19%203.437%201.574%205.17c-.59%201.666-2.08%203.045-3.912%203.57c-.985.281-1.92.49-2.766.679l-.58.13c-1.012.23-1.871.45-2.634.766c-1.44.595-2.616%201.562-3.559%203.873A8%208%200%200%200%209%2034.994V41H7v-6.006c0-1.29.251-2.569.74-3.765c1.135-2.783%202.69-4.157%204.645-4.966c.933-.386%201.937-.636%202.954-.868l.611-.137a45%2045%200%200%200%202.63-.645c1.247-.357%202.215-1.294%202.578-2.316c.338-.954.178-2.035-.948-2.946q-.308-.248-.63-.503c-1.467-1.166-3.09-2.454-4.175-4.284c-1.561-2.631-1.554-5.454-1.547-8.059%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%22M22.433%207.806c.02.562.125.893.293%201.092c.245.29.49.393.78.419c.339.03.77-.047%201.341-.225a21%2021%200%200%200%20.971-.336c.276-.1.569-.207.861-.303c.645-.213%201.383-.412%202.13-.412c4.803%200%207.652%203.75%209.528%207.097c2.304%204.11%202.207%209.241-.247%2013.264c-1.614%202.646-3.677%204.938-6.805%206.154c-4.537%201.765-9.544%201.082-13.67-.955c-.918-.454-1.997.244-1.997%201.132V41h-2v-6.267c0-2.551%202.8-3.954%204.883-2.926c3.742%201.848%208.157%202.403%2012.059.885c2.567-.998%204.334-2.892%205.823-5.332c2.077-3.406%202.16-7.765.21-11.244c-1.853-3.305-4.191-6.075-7.783-6.075c-.42%200-.91.115-1.504.311c-.263.087-.528.183-.808.284l-.094.035c-.309.111-.635.228-.961.33c-.638.199-1.374.373-2.113.308c-.789-.07-1.531-.407-2.134-1.123c-.605-.718-.736-1.606-.761-2.31c-.013-.361.002-.72.017-1.034l.007-.14c.013-.267.024-.49.024-.697l2-.01c0%20.267-.014.554-.027.816l-.006.128c-.015.31-.026.596-.017.867m-8.575-1.3V6h2v.373c-.002%202.728-.004%205.028%201.267%207.17c.884%201.49%202.192%202.534%203.68%203.722l.663.531c1.802%201.458%202.19%203.437%201.574%205.17c-.59%201.666-2.08%203.045-3.912%203.57c-.985.281-1.92.49-2.766.679l-.58.13c-1.012.23-1.871.45-2.634.766c-1.44.595-2.616%201.562-3.559%203.873A8%208%200%200%200%209%2034.994V41H7v-6.006c0-1.29.251-2.569.74-3.765c1.135-2.783%202.69-4.157%204.645-4.966c.933-.386%201.937-.636%202.954-.868l.611-.137a45%2045%200%200%200%202.63-.645c1.247-.357%202.215-1.294%202.578-2.316c.338-.954.178-2.035-.948-2.946q-.308-.248-.63-.503c-1.467-1.166-3.09-2.454-4.175-4.284c-1.561-2.631-1.554-5.454-1.547-8.059%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/stomach-outline.svg?color=%231a73e8&size=48