cheer icon
cheer-outline from Material Symbols by Google · Outline · Social · Apache-2.0 Free for personal and commercial use.
- Name
- cheer-outline
- Set
- Material Symbols
- Style
- Outline
- 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 cheer icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m7.8 5.225l-1-3l1.4-.45l1 2.975zM11.25 4V1h1.5v3zm4.95 1.225l-1.4-.475l1-2.975l1.4.475zM2.15 23l-.3-1.975l5.275-.8q.275-.05.488-.238t.312-.462l.85-2.65q.125-.35 0-.675t-.45-.5L7.5 18.3l-1.9-.6l2.2-6.95q.05-.15.05-.325T7.8 10.1l-3.35 6.3q-.4.725-1.112 1.163T1.8 18H1v-2h.8q.275 0 .513-.137t.362-.388L7.1 7.125l1.25.7q.925.525 1.313 1.513t.062 2.012L8.95 13.8q1.1.425 1.588 1.5t.137 2.2l-.85 2.65q-.275.8-.912 1.363t-1.488.687zm19.7 0l-5.275-.8q-.85-.125-1.487-.687t-.913-1.363l-.85-2.65q-.35-1.125.138-2.2t1.587-1.5l-.775-2.45q-.325-1.025.063-2.012t1.312-1.513l1.25-.7l4.425 8.35q.125.25.363.388T22.2 16h.8v2h-.8q-.825 0-1.537-.437T19.55 16.4l-3.35-6.3q-.05.15-.05.325t.05.325l2.2 6.95l-1.9.6l-.825-2.6q-.325.175-.45.5t0 .675l.85 2.65q.1.275.313.463t.487.237l5.275.8zm-5.35-4.7l-1.45-4.5zm-7.55-4.5L7.5 18.3z"/></svg>
React
import type { SVGProps } from "react";
export function MaterialSymbolsCheerOutline(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="m7.8 5.225l-1-3l1.4-.45l1 2.975zM11.25 4V1h1.5v3zm4.95 1.225l-1.4-.475l1-2.975l1.4.475zM2.15 23l-.3-1.975l5.275-.8q.275-.05.488-.238t.312-.462l.85-2.65q.125-.35 0-.675t-.45-.5L7.5 18.3l-1.9-.6l2.2-6.95q.05-.15.05-.325T7.8 10.1l-3.35 6.3q-.4.725-1.112 1.163T1.8 18H1v-2h.8q.275 0 .513-.137t.362-.388L7.1 7.125l1.25.7q.925.525 1.313 1.513t.062 2.012L8.95 13.8q1.1.425 1.588 1.5t.137 2.2l-.85 2.65q-.275.8-.912 1.363t-1.488.687zm19.7 0l-5.275-.8q-.85-.125-1.487-.687t-.913-1.363l-.85-2.65q-.35-1.125.138-2.2t1.587-1.5l-.775-2.45q-.325-1.025.063-2.012t1.312-1.513l1.25-.7l4.425 8.35q.125.25.363.388T22.2 16h.8v2h-.8q-.825 0-1.537-.437T19.55 16.4l-3.35-6.3q-.05.15-.05.325t.05.325l2.2 6.95l-1.9.6l-.825-2.6q-.325.175-.45.5t0 .675l.85 2.65q.1.275.313.463t.487.237l5.275.8zm-5.35-4.7l-1.45-4.5zm-7.55-4.5L7.5 18.3z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m7.8 5.225l-1-3l1.4-.45l1 2.975zM11.25 4V1h1.5v3zm4.95 1.225l-1.4-.475l1-2.975l1.4.475zM2.15 23l-.3-1.975l5.275-.8q.275-.05.488-.238t.312-.462l.85-2.65q.125-.35 0-.675t-.45-.5L7.5 18.3l-1.9-.6l2.2-6.95q.05-.15.05-.325T7.8 10.1l-3.35 6.3q-.4.725-1.112 1.163T1.8 18H1v-2h.8q.275 0 .513-.137t.362-.388L7.1 7.125l1.25.7q.925.525 1.313 1.513t.062 2.012L8.95 13.8q1.1.425 1.588 1.5t.137 2.2l-.85 2.65q-.275.8-.912 1.363t-1.488.687zm19.7 0l-5.275-.8q-.85-.125-1.487-.687t-.913-1.363l-.85-2.65q-.35-1.125.138-2.2t1.587-1.5l-.775-2.45q-.325-1.025.063-2.012t1.312-1.513l1.25-.7l4.425 8.35q.125.25.363.388T22.2 16h.8v2h-.8q-.825 0-1.537-.437T19.55 16.4l-3.35-6.3q-.05.15-.05.325t.05.325l2.2 6.95l-1.9.6l-.825-2.6q-.325.175-.45.5t0 .675l.85 2.65q.1.275.313.463t.487.237l5.275.8zm-5.35-4.7l-1.45-4.5zm-7.55-4.5L7.5 18.3z"/></svg> </template>
CSS
.icon-cheer-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%22m7.8%205.225l-1-3l1.4-.45l1%202.975zM11.25%204V1h1.5v3zm4.95%201.225l-1.4-.475l1-2.975l1.4.475zM2.15%2023l-.3-1.975l5.275-.8q.275-.05.488-.238t.312-.462l.85-2.65q.125-.35%200-.675t-.45-.5L7.5%2018.3l-1.9-.6l2.2-6.95q.05-.15.05-.325T7.8%2010.1l-3.35%206.3q-.4.725-1.112%201.163T1.8%2018H1v-2h.8q.275%200%20.513-.137t.362-.388L7.1%207.125l1.25.7q.925.525%201.313%201.513t.062%202.012L8.95%2013.8q1.1.425%201.588%201.5t.137%202.2l-.85%202.65q-.275.8-.912%201.363t-1.488.687zm19.7%200l-5.275-.8q-.85-.125-1.487-.687t-.913-1.363l-.85-2.65q-.35-1.125.138-2.2t1.587-1.5l-.775-2.45q-.325-1.025.063-2.012t1.312-1.513l1.25-.7l4.425%208.35q.125.25.363.388T22.2%2016h.8v2h-.8q-.825%200-1.537-.437T19.55%2016.4l-3.35-6.3q-.05.15-.05.325t.05.325l2.2%206.95l-1.9.6l-.825-2.6q-.325.175-.45.5t0%20.675l.85%202.65q.1.275.313.463t.487.237l5.275.8zm-5.35-4.7l-1.45-4.5zm-7.55-4.5L7.5%2018.3z%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%22m7.8%205.225l-1-3l1.4-.45l1%202.975zM11.25%204V1h1.5v3zm4.95%201.225l-1.4-.475l1-2.975l1.4.475zM2.15%2023l-.3-1.975l5.275-.8q.275-.05.488-.238t.312-.462l.85-2.65q.125-.35%200-.675t-.45-.5L7.5%2018.3l-1.9-.6l2.2-6.95q.05-.15.05-.325T7.8%2010.1l-3.35%206.3q-.4.725-1.112%201.163T1.8%2018H1v-2h.8q.275%200%20.513-.137t.362-.388L7.1%207.125l1.25.7q.925.525%201.313%201.513t.062%202.012L8.95%2013.8q1.1.425%201.588%201.5t.137%202.2l-.85%202.65q-.275.8-.912%201.363t-1.488.687zm19.7%200l-5.275-.8q-.85-.125-1.487-.687t-.913-1.363l-.85-2.65q-.35-1.125.138-2.2t1.587-1.5l-.775-2.45q-.325-1.025.063-2.012t1.312-1.513l1.25-.7l4.425%208.35q.125.25.363.388T22.2%2016h.8v2h-.8q-.825%200-1.537-.437T19.55%2016.4l-3.35-6.3q-.05.15-.05.325t.05.325l2.2%206.95l-1.9.6l-.825-2.6q-.325.175-.45.5t0%20.675l.85%202.65q.1.275.313.463t.487.237l5.275.8zm-5.35-4.7l-1.45-4.5zm-7.55-4.5L7.5%2018.3z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/cheer-outline.svg?color=%231a73e8&size=48