thought-bubble-outline from Material Design Icons by Pictogrammers · Outline · Apache-2.0 Free for personal and commercial use.

Name
thought-bubble-outline
Set
Material Design Icons
Style
Outline
Viewbox
24×24
License
Apache 2.0
Aliases
comic-thought-bubble-outline, think-outline, thinking-outline

1 other variant in Material Design Icons

The same icon in other sets

Use the thought bubble icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.5 19A1.5 1.5 0 0 1 5 20.5A1.5 1.5 0 0 1 3.5 22A1.5 1.5 0 0 1 2 20.5A1.5 1.5 0 0 1 3.5 19m5-3a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 8.5 21A2.5 2.5 0 0 1 6 18.5A2.5 2.5 0 0 1 8.5 16m6-1c-1.19 0-2.27-.5-3-1.35c-.73.85-1.81 1.35-3 1.35c-1.96 0-3.59-1.41-3.93-3.26A4.02 4.02 0 0 1 2 8a4 4 0 0 1 4-4l.77.07C7.5 3.41 8.45 3 9.5 3c1.19 0 2.27.5 3 1.35c.73-.85 1.81-1.35 3-1.35c1.96 0 3.59 1.41 3.93 3.26A4.02 4.02 0 0 1 22 10a4 4 0 0 1-4 4l-.77-.07c-.73.66-1.68 1.07-2.73 1.07M6 6a2 2 0 0 0-2 2a2 2 0 0 0 2 2c.33 0 .64-.08.92-.22A2 2 0 0 0 6.5 11a2 2 0 0 0 2 2c.6 0 1.14-.27 1.5-.69l1.47-1.68L13 12.34c.38.4.91.66 1.5.66c1 0 1.83-.74 2-1.7c.34.43.89.7 1.5.7a2 2 0 0 0 2-2a2 2 0 0 0-2-2c-.33 0-.64.08-.92.22A2 2 0 0 0 17.5 7a2 2 0 0 0-2-2c-.59 0-1.12.26-1.5.66l-1.53 1.71L11 5.69c-.36-.42-.9-.69-1.5-.69c-1 0-1.83.74-2 1.7C7.16 6.27 6.61 6 6 6m2.5 11.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1"/></svg>

React

import type { SVGProps } from "react";

export function MdiThoughtBubbleOutline(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.5 19A1.5 1.5 0 0 1 5 20.5A1.5 1.5 0 0 1 3.5 22A1.5 1.5 0 0 1 2 20.5A1.5 1.5 0 0 1 3.5 19m5-3a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 8.5 21A2.5 2.5 0 0 1 6 18.5A2.5 2.5 0 0 1 8.5 16m6-1c-1.19 0-2.27-.5-3-1.35c-.73.85-1.81 1.35-3 1.35c-1.96 0-3.59-1.41-3.93-3.26A4.02 4.02 0 0 1 2 8a4 4 0 0 1 4-4l.77.07C7.5 3.41 8.45 3 9.5 3c1.19 0 2.27.5 3 1.35c.73-.85 1.81-1.35 3-1.35c1.96 0 3.59 1.41 3.93 3.26A4.02 4.02 0 0 1 22 10a4 4 0 0 1-4 4l-.77-.07c-.73.66-1.68 1.07-2.73 1.07M6 6a2 2 0 0 0-2 2a2 2 0 0 0 2 2c.33 0 .64-.08.92-.22A2 2 0 0 0 6.5 11a2 2 0 0 0 2 2c.6 0 1.14-.27 1.5-.69l1.47-1.68L13 12.34c.38.4.91.66 1.5.66c1 0 1.83-.74 2-1.7c.34.43.89.7 1.5.7a2 2 0 0 0 2-2a2 2 0 0 0-2-2c-.33 0-.64.08-.92.22A2 2 0 0 0 17.5 7a2 2 0 0 0-2-2c-.59 0-1.12.26-1.5.66l-1.53 1.71L11 5.69c-.36-.42-.9-.69-1.5-.69c-1 0-1.83.74-2 1.7C7.16 6.27 6.61 6 6 6m2.5 11.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.5 19A1.5 1.5 0 0 1 5 20.5A1.5 1.5 0 0 1 3.5 22A1.5 1.5 0 0 1 2 20.5A1.5 1.5 0 0 1 3.5 19m5-3a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 8.5 21A2.5 2.5 0 0 1 6 18.5A2.5 2.5 0 0 1 8.5 16m6-1c-1.19 0-2.27-.5-3-1.35c-.73.85-1.81 1.35-3 1.35c-1.96 0-3.59-1.41-3.93-3.26A4.02 4.02 0 0 1 2 8a4 4 0 0 1 4-4l.77.07C7.5 3.41 8.45 3 9.5 3c1.19 0 2.27.5 3 1.35c.73-.85 1.81-1.35 3-1.35c1.96 0 3.59 1.41 3.93 3.26A4.02 4.02 0 0 1 22 10a4 4 0 0 1-4 4l-.77-.07c-.73.66-1.68 1.07-2.73 1.07M6 6a2 2 0 0 0-2 2a2 2 0 0 0 2 2c.33 0 .64-.08.92-.22A2 2 0 0 0 6.5 11a2 2 0 0 0 2 2c.6 0 1.14-.27 1.5-.69l1.47-1.68L13 12.34c.38.4.91.66 1.5.66c1 0 1.83-.74 2-1.7c.34.43.89.7 1.5.7a2 2 0 0 0 2-2a2 2 0 0 0-2-2c-.33 0-.64.08-.92.22A2 2 0 0 0 17.5 7a2 2 0 0 0-2-2c-.59 0-1.12.26-1.5.66l-1.53 1.71L11 5.69c-.36-.42-.9-.69-1.5-.69c-1 0-1.83.74-2 1.7C7.16 6.27 6.61 6 6 6m2.5 11.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1"/></svg>
</template>

CSS

.icon-thought-bubble-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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M3.5%2019A1.5%201.5%200%200%201%205%2020.5A1.5%201.5%200%200%201%203.5%2022A1.5%201.5%200%200%201%202%2020.5A1.5%201.5%200%200%201%203.5%2019m5-3a2.5%202.5%200%200%201%202.5%202.5A2.5%202.5%200%200%201%208.5%2021A2.5%202.5%200%200%201%206%2018.5A2.5%202.5%200%200%201%208.5%2016m6-1c-1.19%200-2.27-.5-3-1.35c-.73.85-1.81%201.35-3%201.35c-1.96%200-3.59-1.41-3.93-3.26A4.02%204.02%200%200%201%202%208a4%204%200%200%201%204-4l.77.07C7.5%203.41%208.45%203%209.5%203c1.19%200%202.27.5%203%201.35c.73-.85%201.81-1.35%203-1.35c1.96%200%203.59%201.41%203.93%203.26A4.02%204.02%200%200%201%2022%2010a4%204%200%200%201-4%204l-.77-.07c-.73.66-1.68%201.07-2.73%201.07M6%206a2%202%200%200%200-2%202a2%202%200%200%200%202%202c.33%200%20.64-.08.92-.22A2%202%200%200%200%206.5%2011a2%202%200%200%200%202%202c.6%200%201.14-.27%201.5-.69l1.47-1.68L13%2012.34c.38.4.91.66%201.5.66c1%200%201.83-.74%202-1.7c.34.43.89.7%201.5.7a2%202%200%200%200%202-2a2%202%200%200%200-2-2c-.33%200-.64.08-.92.22A2%202%200%200%200%2017.5%207a2%202%200%200%200-2-2c-.59%200-1.12.26-1.5.66l-1.53%201.71L11%205.69c-.36-.42-.9-.69-1.5-.69c-1%200-1.83.74-2%201.7C7.16%206.27%206.61%206%206%206m2.5%2011.5a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M3.5%2019A1.5%201.5%200%200%201%205%2020.5A1.5%201.5%200%200%201%203.5%2022A1.5%201.5%200%200%201%202%2020.5A1.5%201.5%200%200%201%203.5%2019m5-3a2.5%202.5%200%200%201%202.5%202.5A2.5%202.5%200%200%201%208.5%2021A2.5%202.5%200%200%201%206%2018.5A2.5%202.5%200%200%201%208.5%2016m6-1c-1.19%200-2.27-.5-3-1.35c-.73.85-1.81%201.35-3%201.35c-1.96%200-3.59-1.41-3.93-3.26A4.02%204.02%200%200%201%202%208a4%204%200%200%201%204-4l.77.07C7.5%203.41%208.45%203%209.5%203c1.19%200%202.27.5%203%201.35c.73-.85%201.81-1.35%203-1.35c1.96%200%203.59%201.41%203.93%203.26A4.02%204.02%200%200%201%2022%2010a4%204%200%200%201-4%204l-.77-.07c-.73.66-1.68%201.07-2.73%201.07M6%206a2%202%200%200%200-2%202a2%202%200%200%200%202%202c.33%200%20.64-.08.92-.22A2%202%200%200%200%206.5%2011a2%202%200%200%200%202%202c.6%200%201.14-.27%201.5-.69l1.47-1.68L13%2012.34c.38.4.91.66%201.5.66c1%200%201.83-.74%202-1.7c.34.43.89.7%201.5.7a2%202%200%200%200%202-2a2%202%200%200%200-2-2c-.33%200-.64.08-.92.22A2%202%200%200%200%2017.5%207a2%202%200%200%200-2-2c-.59%200-1.12.26-1.5.66l-1.53%201.71L11%205.69c-.36-.42-.9-.69-1.5-.69c-1%200-1.83.74-2%201.7C7.16%206.27%206.61%206%206%206m2.5%2011.5a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mdi/thought-bubble-outline.svg?color=%231a73e8&size=48