social leaderboard icon
social-leaderboard-outline-rounded from Material Symbols Light by Google · Outline Rounded · Social · Apache-2.0 Free for personal and commercial use.
- Name
- social-leaderboard-outline-rounded
- Set
- Material Symbols Light
- Style
- Outline Rounded
- Category
- Social
- Viewbox
- 24×24
- License
- Apache 2.0
3 other variants in Material Symbols Light
The same icon in other sets
More social icons from Material Symbols Light
Use the social leaderboard icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M15.188 18.688Q16.5 17.375 16.5 15.5t-1.312-3.187T12 11t-3.187 1.313T7.5 15.5t1.313 3.188T12 20t3.188-1.312m-6.074-7.853q.48-.314 1.023-.505q.544-.191 1.119-.28L8.98 5.538h-2.5zm-1.887 8.1q.017-.168.078-.37q.06-.204.176-.43q-.462-.747-.666-1.613t-.107-1.783q0-.75.26-1.424q.259-.673.72-1.211q-.357.061-.628.256q-.271.196-.387.467q-1.115.271-1.738 1.255t-.381 2.18q0 1.115.779 1.894t1.894.778m9.546 0q1.358-.08 2.293-1.064q.934-.983.934-2.37t-.935-2.37t-2.292-1.065q-.115 0-.23.01q-.116.01-.232.029q.56.706.874 1.572q.315.866.315 1.824t-.314 1.824q-.315.866-.874 1.572q.115.02.23.029q.116.01.231.01m-6.59 1.768q-.854-.297-1.552-.855q-.264.088-.556.12t-.6.032q-1.852 0-3.163-1.311T3 15.525q0-1.829 1.277-3.129t3.094-1.34q.212 0 .404.029q.192.028.384.067L5.438 5.7q-.212-.404.028-.783q.239-.378.699-.378H8.62q.46 0 .836.242t.593.646L12 9.307l1.95-3.88q.217-.404.593-.646t.836-.242h2.457q.46 0 .7.378q.239.38.027.783l-2.678 5.383q.173-.039.356-.058q.182-.02.375-.02q1.836.047 3.11 1.347T21 15.5q0 1.877-1.311 3.189T16.5 20q-.302 0-.587-.032t-.55-.12q-.697.539-1.55.845T12 21t-1.816-.297m-1.07-9.869L6.48 5.54zM12 16.6l-1.071.81q-.131.086-.242.003t-.062-.22l.398-1.334l-1.052-.759q-.13-.086-.08-.22t.192-.134h1.308l.417-1.394q.05-.136.192-.136t.192.136l.417 1.394h1.308q.142 0 .192.134t-.08.22l-1.052.76l.398 1.332q.05.137-.061.22t-.243-.002zm2.887-5.765l2.657-5.296H15.02l-2.183 4.326l.11.22q.523.1 1.012.28q.488.18.928.47"/></svg>
React
import type { SVGProps } from "react";
export function MaterialSymbolsLightSocialLeaderboardOutlineRounded(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="M15.188 18.688Q16.5 17.375 16.5 15.5t-1.312-3.187T12 11t-3.187 1.313T7.5 15.5t1.313 3.188T12 20t3.188-1.312m-6.074-7.853q.48-.314 1.023-.505q.544-.191 1.119-.28L8.98 5.538h-2.5zm-1.887 8.1q.017-.168.078-.37q.06-.204.176-.43q-.462-.747-.666-1.613t-.107-1.783q0-.75.26-1.424q.259-.673.72-1.211q-.357.061-.628.256q-.271.196-.387.467q-1.115.271-1.738 1.255t-.381 2.18q0 1.115.779 1.894t1.894.778m9.546 0q1.358-.08 2.293-1.064q.934-.983.934-2.37t-.935-2.37t-2.292-1.065q-.115 0-.23.01q-.116.01-.232.029q.56.706.874 1.572q.315.866.315 1.824t-.314 1.824q-.315.866-.874 1.572q.115.02.23.029q.116.01.231.01m-6.59 1.768q-.854-.297-1.552-.855q-.264.088-.556.12t-.6.032q-1.852 0-3.163-1.311T3 15.525q0-1.829 1.277-3.129t3.094-1.34q.212 0 .404.029q.192.028.384.067L5.438 5.7q-.212-.404.028-.783q.239-.378.699-.378H8.62q.46 0 .836.242t.593.646L12 9.307l1.95-3.88q.217-.404.593-.646t.836-.242h2.457q.46 0 .7.378q.239.38.027.783l-2.678 5.383q.173-.039.356-.058q.182-.02.375-.02q1.836.047 3.11 1.347T21 15.5q0 1.877-1.311 3.189T16.5 20q-.302 0-.587-.032t-.55-.12q-.697.539-1.55.845T12 21t-1.816-.297m-1.07-9.869L6.48 5.54zM12 16.6l-1.071.81q-.131.086-.242.003t-.062-.22l.398-1.334l-1.052-.759q-.13-.086-.08-.22t.192-.134h1.308l.417-1.394q.05-.136.192-.136t.192.136l.417 1.394h1.308q.142 0 .192.134t-.08.22l-1.052.76l.398 1.332q.05.137-.061.22t-.243-.002zm2.887-5.765l2.657-5.296H15.02l-2.183 4.326l.11.22q.523.1 1.012.28q.488.18.928.47"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M15.188 18.688Q16.5 17.375 16.5 15.5t-1.312-3.187T12 11t-3.187 1.313T7.5 15.5t1.313 3.188T12 20t3.188-1.312m-6.074-7.853q.48-.314 1.023-.505q.544-.191 1.119-.28L8.98 5.538h-2.5zm-1.887 8.1q.017-.168.078-.37q.06-.204.176-.43q-.462-.747-.666-1.613t-.107-1.783q0-.75.26-1.424q.259-.673.72-1.211q-.357.061-.628.256q-.271.196-.387.467q-1.115.271-1.738 1.255t-.381 2.18q0 1.115.779 1.894t1.894.778m9.546 0q1.358-.08 2.293-1.064q.934-.983.934-2.37t-.935-2.37t-2.292-1.065q-.115 0-.23.01q-.116.01-.232.029q.56.706.874 1.572q.315.866.315 1.824t-.314 1.824q-.315.866-.874 1.572q.115.02.23.029q.116.01.231.01m-6.59 1.768q-.854-.297-1.552-.855q-.264.088-.556.12t-.6.032q-1.852 0-3.163-1.311T3 15.525q0-1.829 1.277-3.129t3.094-1.34q.212 0 .404.029q.192.028.384.067L5.438 5.7q-.212-.404.028-.783q.239-.378.699-.378H8.62q.46 0 .836.242t.593.646L12 9.307l1.95-3.88q.217-.404.593-.646t.836-.242h2.457q.46 0 .7.378q.239.38.027.783l-2.678 5.383q.173-.039.356-.058q.182-.02.375-.02q1.836.047 3.11 1.347T21 15.5q0 1.877-1.311 3.189T16.5 20q-.302 0-.587-.032t-.55-.12q-.697.539-1.55.845T12 21t-1.816-.297m-1.07-9.869L6.48 5.54zM12 16.6l-1.071.81q-.131.086-.242.003t-.062-.22l.398-1.334l-1.052-.759q-.13-.086-.08-.22t.192-.134h1.308l.417-1.394q.05-.136.192-.136t.192.136l.417 1.394h1.308q.142 0 .192.134t-.08.22l-1.052.76l.398 1.332q.05.137-.061.22t-.243-.002zm2.887-5.765l2.657-5.296H15.02l-2.183 4.326l.11.22q.523.1 1.012.28q.488.18.928.47"/></svg> </template>
CSS
.icon-social-leaderboard-outline-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%22M15.188%2018.688Q16.5%2017.375%2016.5%2015.5t-1.312-3.187T12%2011t-3.187%201.313T7.5%2015.5t1.313%203.188T12%2020t3.188-1.312m-6.074-7.853q.48-.314%201.023-.505q.544-.191%201.119-.28L8.98%205.538h-2.5zm-1.887%208.1q.017-.168.078-.37q.06-.204.176-.43q-.462-.747-.666-1.613t-.107-1.783q0-.75.26-1.424q.259-.673.72-1.211q-.357.061-.628.256q-.271.196-.387.467q-1.115.271-1.738%201.255t-.381%202.18q0%201.115.779%201.894t1.894.778m9.546%200q1.358-.08%202.293-1.064q.934-.983.934-2.37t-.935-2.37t-2.292-1.065q-.115%200-.23.01q-.116.01-.232.029q.56.706.874%201.572q.315.866.315%201.824t-.314%201.824q-.315.866-.874%201.572q.115.02.23.029q.116.01.231.01m-6.59%201.768q-.854-.297-1.552-.855q-.264.088-.556.12t-.6.032q-1.852%200-3.163-1.311T3%2015.525q0-1.829%201.277-3.129t3.094-1.34q.212%200%20.404.029q.192.028.384.067L5.438%205.7q-.212-.404.028-.783q.239-.378.699-.378H8.62q.46%200%20.836.242t.593.646L12%209.307l1.95-3.88q.217-.404.593-.646t.836-.242h2.457q.46%200%20.7.378q.239.38.027.783l-2.678%205.383q.173-.039.356-.058q.182-.02.375-.02q1.836.047%203.11%201.347T21%2015.5q0%201.877-1.311%203.189T16.5%2020q-.302%200-.587-.032t-.55-.12q-.697.539-1.55.845T12%2021t-1.816-.297m-1.07-9.869L6.48%205.54zM12%2016.6l-1.071.81q-.131.086-.242.003t-.062-.22l.398-1.334l-1.052-.759q-.13-.086-.08-.22t.192-.134h1.308l.417-1.394q.05-.136.192-.136t.192.136l.417%201.394h1.308q.142%200%20.192.134t-.08.22l-1.052.76l.398%201.332q.05.137-.061.22t-.243-.002zm2.887-5.765l2.657-5.296H15.02l-2.183%204.326l.11.22q.523.1%201.012.28q.488.18.928.47%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%22M15.188%2018.688Q16.5%2017.375%2016.5%2015.5t-1.312-3.187T12%2011t-3.187%201.313T7.5%2015.5t1.313%203.188T12%2020t3.188-1.312m-6.074-7.853q.48-.314%201.023-.505q.544-.191%201.119-.28L8.98%205.538h-2.5zm-1.887%208.1q.017-.168.078-.37q.06-.204.176-.43q-.462-.747-.666-1.613t-.107-1.783q0-.75.26-1.424q.259-.673.72-1.211q-.357.061-.628.256q-.271.196-.387.467q-1.115.271-1.738%201.255t-.381%202.18q0%201.115.779%201.894t1.894.778m9.546%200q1.358-.08%202.293-1.064q.934-.983.934-2.37t-.935-2.37t-2.292-1.065q-.115%200-.23.01q-.116.01-.232.029q.56.706.874%201.572q.315.866.315%201.824t-.314%201.824q-.315.866-.874%201.572q.115.02.23.029q.116.01.231.01m-6.59%201.768q-.854-.297-1.552-.855q-.264.088-.556.12t-.6.032q-1.852%200-3.163-1.311T3%2015.525q0-1.829%201.277-3.129t3.094-1.34q.212%200%20.404.029q.192.028.384.067L5.438%205.7q-.212-.404.028-.783q.239-.378.699-.378H8.62q.46%200%20.836.242t.593.646L12%209.307l1.95-3.88q.217-.404.593-.646t.836-.242h2.457q.46%200%20.7.378q.239.38.027.783l-2.678%205.383q.173-.039.356-.058q.182-.02.375-.02q1.836.047%203.11%201.347T21%2015.5q0%201.877-1.311%203.189T16.5%2020q-.302%200-.587-.032t-.55-.12q-.697.539-1.55.845T12%2021t-1.816-.297m-1.07-9.869L6.48%205.54zM12%2016.6l-1.071.81q-.131.086-.242.003t-.062-.22l.398-1.334l-1.052-.759q-.13-.086-.08-.22t.192-.134h1.308l.417-1.394q.05-.136.192-.136t.192.136l.417%201.394h1.308q.142%200%20.192.134t-.08.22l-1.052.76l.398%201.332q.05.137-.061.22t-.243-.002zm2.887-5.765l2.657-5.296H15.02l-2.183%204.326l.11.22q.523.1%201.012.28q.488.18.928.47%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols-light/social-leaderboard-outline-rounded.svg?color=%231a73e8&size=48