tongue from Health Icons by Resolve to Save Lives · Filled · Emotions · MIT Free for personal and commercial use.

Name
tongue
Set
Health Icons
Style
Filled
Category
Emotions
Viewbox
48×48
License
MIT

3 other variants in Health Icons

The same icon in other sets

More emotions icons from Health Icons

Use the tongue icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M20 22c0 2.21-1.12 4-2.5 4S15 24.21 15 22s1.12-4 2.5-4s2.5 1.79 2.5 4m10.5 4c1.38 0 2.5-1.79 2.5-4s-1.12-4-2.5-4s-2.5 1.79-2.5 4s1.12 4 2.5 4"/><path fill-rule="evenodd" d="M27.874 41.582a18 18 0 0 0 3.276-1.058l.043-.019A18.04 18.04 0 0 0 38 35.316a18 18 0 0 0 2.325-3.721l.001-.004A17.9 17.9 0 0 0 42 24c0-9.941-8.059-18-18-18S6 14.059 6 24c0 7.333 4.385 13.642 10.676 16.447l.131.058c1.058.462 2.168.825 3.32 1.077A5.98 5.98 0 0 0 24 43a5.98 5.98 0 0 0 3.874-1.418M8 24c0 6.84 4.292 12.677 10.33 14.966A6 6 0 0 1 18 37v-2.122c-.92-.452-1.558-.992-2-1.522l-.025-.03C15 32.135 15 31 15 31s-.373-1.493 1.137-1.899l.06-.015c.225-.055.49-.086.803-.086h14.5q.18 0 .336.02l.016.003C33.5 29.243 33.5 31 33.5 31s-.133 1.332-1.5 2.621l-.08.075A7.3 7.3 0 0 1 30 34.929V37c0 .689-.116 1.35-.33 1.966a16.05 16.05 0 0 0 7.162-5.407l.018-.024l.103-.14A15.9 15.9 0 0 0 40 24c0-8.837-7.163-16-16-16S8 15.163 8 24m16 12a1 1 0 0 1-1-1v-4h-3v6a4 4 0 0 0 8 0v-6h-3v4a1 1 0 0 1-1 1" clip-rule="evenodd"/></g></svg>

React

import type { SVGProps } from "react";

export function HealthiconsTongue(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M20 22c0 2.21-1.12 4-2.5 4S15 24.21 15 22s1.12-4 2.5-4s2.5 1.79 2.5 4m10.5 4c1.38 0 2.5-1.79 2.5-4s-1.12-4-2.5-4s-2.5 1.79-2.5 4s1.12 4 2.5 4"/><path fillRule="evenodd" d="M27.874 41.582a18 18 0 0 0 3.276-1.058l.043-.019A18.04 18.04 0 0 0 38 35.316a18 18 0 0 0 2.325-3.721l.001-.004A17.9 17.9 0 0 0 42 24c0-9.941-8.059-18-18-18S6 14.059 6 24c0 7.333 4.385 13.642 10.676 16.447l.131.058c1.058.462 2.168.825 3.32 1.077A5.98 5.98 0 0 0 24 43a5.98 5.98 0 0 0 3.874-1.418M8 24c0 6.84 4.292 12.677 10.33 14.966A6 6 0 0 1 18 37v-2.122c-.92-.452-1.558-.992-2-1.522l-.025-.03C15 32.135 15 31 15 31s-.373-1.493 1.137-1.899l.06-.015c.225-.055.49-.086.803-.086h14.5q.18 0 .336.02l.016.003C33.5 29.243 33.5 31 33.5 31s-.133 1.332-1.5 2.621l-.08.075A7.3 7.3 0 0 1 30 34.929V37c0 .689-.116 1.35-.33 1.966a16.05 16.05 0 0 0 7.162-5.407l.018-.024l.103-.14A15.9 15.9 0 0 0 40 24c0-8.837-7.163-16-16-16S8 15.163 8 24m16 12a1 1 0 0 1-1-1v-4h-3v6a4 4 0 0 0 8 0v-6h-3v4a1 1 0 0 1-1 1" clipRule="evenodd"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M20 22c0 2.21-1.12 4-2.5 4S15 24.21 15 22s1.12-4 2.5-4s2.5 1.79 2.5 4m10.5 4c1.38 0 2.5-1.79 2.5-4s-1.12-4-2.5-4s-2.5 1.79-2.5 4s1.12 4 2.5 4"/><path fill-rule="evenodd" d="M27.874 41.582a18 18 0 0 0 3.276-1.058l.043-.019A18.04 18.04 0 0 0 38 35.316a18 18 0 0 0 2.325-3.721l.001-.004A17.9 17.9 0 0 0 42 24c0-9.941-8.059-18-18-18S6 14.059 6 24c0 7.333 4.385 13.642 10.676 16.447l.131.058c1.058.462 2.168.825 3.32 1.077A5.98 5.98 0 0 0 24 43a5.98 5.98 0 0 0 3.874-1.418M8 24c0 6.84 4.292 12.677 10.33 14.966A6 6 0 0 1 18 37v-2.122c-.92-.452-1.558-.992-2-1.522l-.025-.03C15 32.135 15 31 15 31s-.373-1.493 1.137-1.899l.06-.015c.225-.055.49-.086.803-.086h14.5q.18 0 .336.02l.016.003C33.5 29.243 33.5 31 33.5 31s-.133 1.332-1.5 2.621l-.08.075A7.3 7.3 0 0 1 30 34.929V37c0 .689-.116 1.35-.33 1.966a16.05 16.05 0 0 0 7.162-5.407l.018-.024l.103-.14A15.9 15.9 0 0 0 40 24c0-8.837-7.163-16-16-16S8 15.163 8 24m16 12a1 1 0 0 1-1-1v-4h-3v6a4 4 0 0 0 8 0v-6h-3v4a1 1 0 0 1-1 1" clip-rule="evenodd"/></g></svg>
</template>

CSS

.icon-tongue {
  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%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M20%2022c0%202.21-1.12%204-2.5%204S15%2024.21%2015%2022s1.12-4%202.5-4s2.5%201.79%202.5%204m10.5%204c1.38%200%202.5-1.79%202.5-4s-1.12-4-2.5-4s-2.5%201.79-2.5%204s1.12%204%202.5%204%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M27.874%2041.582a18%2018%200%200%200%203.276-1.058l.043-.019A18.04%2018.04%200%200%200%2038%2035.316a18%2018%200%200%200%202.325-3.721l.001-.004A17.9%2017.9%200%200%200%2042%2024c0-9.941-8.059-18-18-18S6%2014.059%206%2024c0%207.333%204.385%2013.642%2010.676%2016.447l.131.058c1.058.462%202.168.825%203.32%201.077A5.98%205.98%200%200%200%2024%2043a5.98%205.98%200%200%200%203.874-1.418M8%2024c0%206.84%204.292%2012.677%2010.33%2014.966A6%206%200%200%201%2018%2037v-2.122c-.92-.452-1.558-.992-2-1.522l-.025-.03C15%2032.135%2015%2031%2015%2031s-.373-1.493%201.137-1.899l.06-.015c.225-.055.49-.086.803-.086h14.5q.18%200%20.336.02l.016.003C33.5%2029.243%2033.5%2031%2033.5%2031s-.133%201.332-1.5%202.621l-.08.075A7.3%207.3%200%200%201%2030%2034.929V37c0%20.689-.116%201.35-.33%201.966a16.05%2016.05%200%200%200%207.162-5.407l.018-.024l.103-.14A15.9%2015.9%200%200%200%2040%2024c0-8.837-7.163-16-16-16S8%2015.163%208%2024m16%2012a1%201%200%200%201-1-1v-4h-3v6a4%204%200%200%200%208%200v-6h-3v4a1%201%200%200%201-1%201%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%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%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M20%2022c0%202.21-1.12%204-2.5%204S15%2024.21%2015%2022s1.12-4%202.5-4s2.5%201.79%202.5%204m10.5%204c1.38%200%202.5-1.79%202.5-4s-1.12-4-2.5-4s-2.5%201.79-2.5%204s1.12%204%202.5%204%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M27.874%2041.582a18%2018%200%200%200%203.276-1.058l.043-.019A18.04%2018.04%200%200%200%2038%2035.316a18%2018%200%200%200%202.325-3.721l.001-.004A17.9%2017.9%200%200%200%2042%2024c0-9.941-8.059-18-18-18S6%2014.059%206%2024c0%207.333%204.385%2013.642%2010.676%2016.447l.131.058c1.058.462%202.168.825%203.32%201.077A5.98%205.98%200%200%200%2024%2043a5.98%205.98%200%200%200%203.874-1.418M8%2024c0%206.84%204.292%2012.677%2010.33%2014.966A6%206%200%200%201%2018%2037v-2.122c-.92-.452-1.558-.992-2-1.522l-.025-.03C15%2032.135%2015%2031%2015%2031s-.373-1.493%201.137-1.899l.06-.015c.225-.055.49-.086.803-.086h14.5q.18%200%20.336.02l.016.003C33.5%2029.243%2033.5%2031%2033.5%2031s-.133%201.332-1.5%202.621l-.08.075A7.3%207.3%200%200%201%2030%2034.929V37c0%20.689-.116%201.35-.33%201.966a16.05%2016.05%200%200%200%207.162-5.407l.018-.024l.103-.14A15.9%2015.9%200%200%200%2040%2024c0-8.837-7.163-16-16-16S8%2015.163%208%2024m16%2012a1%201%200%200%201-1-1v-4h-3v6a4%204%200%200%200%208%200v-6h-3v4a1%201%200%200%201-1%201%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/tongue.svg?color=%231a73e8&size=48