psychology icon
psychology-rounded from Material Symbols by Google · Rounded · Social · Apache-2.0 Free for personal and commercial use.
- Name
- psychology-rounded
- Set
- Material Symbols
- Style
- Rounded
- Category
- Social
- Viewbox
- 24×24
- License
- Apache 2.0
5 other variants in Material Symbols
The same icon in other sets
More social icons from Material Symbols
Use the psychology icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m10.85 13.75l.1.8q.025.2.163.325t.337.125h1.1q.2 0 .338-.125t.162-.325l.1-.8q.2-.075.363-.175t.287-.225l.75.325q.175.075.35.025t.275-.225l.55-.95q.1-.175.063-.35t-.188-.3l-.65-.475q.05-.2.05-.4t-.05-.4l.65-.475q.15-.125.188-.3t-.063-.35l-.55-.95q-.1-.175-.275-.225t-.35.025l-.75.325q-.125-.125-.288-.225t-.362-.175l-.1-.8q-.025-.2-.162-.325T12.55 7h-1.1q-.2 0-.337.125t-.163.325l-.1.8q-.2.075-.362.175t-.288.225l-.75-.325Q9.275 8.25 9.1 8.3t-.275.225l-.55.95q-.1.175-.062.35t.187.3l.65.475Q9 10.8 9 11t.05.4l-.65.475q-.15.125-.187.3t.062.35l.55.95q.1.175.275.225t.35-.025l.75-.325q.125.125.288.225t.362.175m.088-1.687Q10.5 11.625 10.5 11t.438-1.062T12 9.5t1.063.438T13.5 11t-.437 1.063T12 12.5t-1.062-.437M7 22q-.425 0-.712-.288T6 21v-3.3q-1.425-1.3-2.212-3.037T3 11q0-3.75 2.625-6.375T12 2q3.125 0 5.538 1.838t3.137 4.787l1.3 5.125q.125.475-.175.863T21 15h-2v3q0 .825-.587 1.413T17 20h-2v1q0 .425-.288.713T14 22z"/></svg>
React
import type { SVGProps } from "react";
export function MaterialSymbolsPsychologyRounded(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="m10.85 13.75l.1.8q.025.2.163.325t.337.125h1.1q.2 0 .338-.125t.162-.325l.1-.8q.2-.075.363-.175t.287-.225l.75.325q.175.075.35.025t.275-.225l.55-.95q.1-.175.063-.35t-.188-.3l-.65-.475q.05-.2.05-.4t-.05-.4l.65-.475q.15-.125.188-.3t-.063-.35l-.55-.95q-.1-.175-.275-.225t-.35.025l-.75.325q-.125-.125-.288-.225t-.362-.175l-.1-.8q-.025-.2-.162-.325T12.55 7h-1.1q-.2 0-.337.125t-.163.325l-.1.8q-.2.075-.362.175t-.288.225l-.75-.325Q9.275 8.25 9.1 8.3t-.275.225l-.55.95q-.1.175-.062.35t.187.3l.65.475Q9 10.8 9 11t.05.4l-.65.475q-.15.125-.187.3t.062.35l.55.95q.1.175.275.225t.35-.025l.75-.325q.125.125.288.225t.362.175m.088-1.687Q10.5 11.625 10.5 11t.438-1.062T12 9.5t1.063.438T13.5 11t-.437 1.063T12 12.5t-1.062-.437M7 22q-.425 0-.712-.288T6 21v-3.3q-1.425-1.3-2.212-3.037T3 11q0-3.75 2.625-6.375T12 2q3.125 0 5.538 1.838t3.137 4.787l1.3 5.125q.125.475-.175.863T21 15h-2v3q0 .825-.587 1.413T17 20h-2v1q0 .425-.288.713T14 22z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m10.85 13.75l.1.8q.025.2.163.325t.337.125h1.1q.2 0 .338-.125t.162-.325l.1-.8q.2-.075.363-.175t.287-.225l.75.325q.175.075.35.025t.275-.225l.55-.95q.1-.175.063-.35t-.188-.3l-.65-.475q.05-.2.05-.4t-.05-.4l.65-.475q.15-.125.188-.3t-.063-.35l-.55-.95q-.1-.175-.275-.225t-.35.025l-.75.325q-.125-.125-.288-.225t-.362-.175l-.1-.8q-.025-.2-.162-.325T12.55 7h-1.1q-.2 0-.337.125t-.163.325l-.1.8q-.2.075-.362.175t-.288.225l-.75-.325Q9.275 8.25 9.1 8.3t-.275.225l-.55.95q-.1.175-.062.35t.187.3l.65.475Q9 10.8 9 11t.05.4l-.65.475q-.15.125-.187.3t.062.35l.55.95q.1.175.275.225t.35-.025l.75-.325q.125.125.288.225t.362.175m.088-1.687Q10.5 11.625 10.5 11t.438-1.062T12 9.5t1.063.438T13.5 11t-.437 1.063T12 12.5t-1.062-.437M7 22q-.425 0-.712-.288T6 21v-3.3q-1.425-1.3-2.212-3.037T3 11q0-3.75 2.625-6.375T12 2q3.125 0 5.538 1.838t3.137 4.787l1.3 5.125q.125.475-.175.863T21 15h-2v3q0 .825-.587 1.413T17 20h-2v1q0 .425-.288.713T14 22z"/></svg> </template>
CSS
.icon-psychology-rounded {
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%22m10.85%2013.75l.1.8q.025.2.163.325t.337.125h1.1q.2%200%20.338-.125t.162-.325l.1-.8q.2-.075.363-.175t.287-.225l.75.325q.175.075.35.025t.275-.225l.55-.95q.1-.175.063-.35t-.188-.3l-.65-.475q.05-.2.05-.4t-.05-.4l.65-.475q.15-.125.188-.3t-.063-.35l-.55-.95q-.1-.175-.275-.225t-.35.025l-.75.325q-.125-.125-.288-.225t-.362-.175l-.1-.8q-.025-.2-.162-.325T12.55%207h-1.1q-.2%200-.337.125t-.163.325l-.1.8q-.2.075-.362.175t-.288.225l-.75-.325Q9.275%208.25%209.1%208.3t-.275.225l-.55.95q-.1.175-.062.35t.187.3l.65.475Q9%2010.8%209%2011t.05.4l-.65.475q-.15.125-.187.3t.062.35l.55.95q.1.175.275.225t.35-.025l.75-.325q.125.125.288.225t.362.175m.088-1.687Q10.5%2011.625%2010.5%2011t.438-1.062T12%209.5t1.063.438T13.5%2011t-.437%201.063T12%2012.5t-1.062-.437M7%2022q-.425%200-.712-.288T6%2021v-3.3q-1.425-1.3-2.212-3.037T3%2011q0-3.75%202.625-6.375T12%202q3.125%200%205.538%201.838t3.137%204.787l1.3%205.125q.125.475-.175.863T21%2015h-2v3q0%20.825-.587%201.413T17%2020h-2v1q0%20.425-.288.713T14%2022z%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%22m10.85%2013.75l.1.8q.025.2.163.325t.337.125h1.1q.2%200%20.338-.125t.162-.325l.1-.8q.2-.075.363-.175t.287-.225l.75.325q.175.075.35.025t.275-.225l.55-.95q.1-.175.063-.35t-.188-.3l-.65-.475q.05-.2.05-.4t-.05-.4l.65-.475q.15-.125.188-.3t-.063-.35l-.55-.95q-.1-.175-.275-.225t-.35.025l-.75.325q-.125-.125-.288-.225t-.362-.175l-.1-.8q-.025-.2-.162-.325T12.55%207h-1.1q-.2%200-.337.125t-.163.325l-.1.8q-.2.075-.362.175t-.288.225l-.75-.325Q9.275%208.25%209.1%208.3t-.275.225l-.55.95q-.1.175-.062.35t.187.3l.65.475Q9%2010.8%209%2011t.05.4l-.65.475q-.15.125-.187.3t.062.35l.55.95q.1.175.275.225t.35-.025l.75-.325q.125.125.288.225t.362.175m.088-1.687Q10.5%2011.625%2010.5%2011t.438-1.062T12%209.5t1.063.438T13.5%2011t-.437%201.063T12%2012.5t-1.062-.437M7%2022q-.425%200-.712-.288T6%2021v-3.3q-1.425-1.3-2.212-3.037T3%2011q0-3.75%202.625-6.375T12%202q3.125%200%205.538%201.838t3.137%204.787l1.3%205.125q.125.475-.175.863T21%2015h-2v3q0%20.825-.587%201.413T17%2020h-2v1q0%20.425-.288.713T14%2022z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/psychology-rounded.svg?color=%231a73e8&size=48