seat-heat-right-rounded from Material Symbols Light by Google · Rounded · Transit · Apache-2.0 Free for personal and commercial use.

Name
seat-heat-right-rounded
Set
Material Symbols Light
Style
Rounded
Category
Transit
Viewbox
24×24
License
Apache 2.0
Aliases
seat-heat-right-outline-rounded

2 other variants in Material Symbols Light

The same icon in other sets

More transit icons from Material Symbols Light

Use the seat heat right icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.996 11.729q-.177-.09-.232-.288q-.056-.199.034-.376l.152-.313q.112-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T11.784 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.301-.232t.368.035q.177.09.242.288q.066.198-.044.375l-.177.294q-.13.245-.205.52t-.076.552q0 .427.167.819q.166.392.436.719q.41.467.607 1.049t.198 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.233q-.198.055-.375-.035m-3.892 0q-.177-.09-.233-.288q-.056-.199.035-.376l.152-.313q.111-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T7.892 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.3-.232q.192-.056.369.035q.177.09.242.288t-.044.375l-.177.294q-.13.245-.206.511t-.075.541q0 .427.157.829t.426.729q.41.467.617 1.049t.208 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.232t-.375-.034m-3.892 0q-.177-.09-.233-.289t.035-.375l.157-.313q.112-.264.174-.54t.063-.55q0-.428-.135-.82q-.134-.392-.404-.719q-.41-.487-.64-1.078Q4 6.454 4 5.82q0-.402.102-.792t.312-.75l.157-.27q.11-.176.298-.232t.366.034t.242.289t-.044.375l-.177.294q-.131.239-.206.508t-.075.544q0 .427.157.829t.426.729q.41.467.62 1.049t.21 1.197q0 .421-.095.812q-.095.39-.26.769l-.158.327q-.09.177-.288.233t-.375-.035M8.822 20q-.414 0-.688-.274t-.274-.687t.274-.688t.687-.274h6.043q.39 0 .74.142t.621.398v-1.369q0-1.577.446-3.079t1.095-2.961l.417-.935q.313-.702.21-1.451q-.105-.749-.637-1.287q-.123-.143-.185-.296q-.062-.154-.062-.314q0-.363.26-.625t.621-.261q.327 0 .627.176t.448.49q.268.53.401 1.099q.134.569.134 1.173q0 .342-.04.672t-.147.667l-2.227 8.632q-.142.477-.516.765t-.857.287z"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsLightSeatHeatRightRounded(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="M12.996 11.729q-.177-.09-.232-.288q-.056-.199.034-.376l.152-.313q.112-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T11.784 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.301-.232t.368.035q.177.09.242.288q.066.198-.044.375l-.177.294q-.13.245-.205.52t-.076.552q0 .427.167.819q.166.392.436.719q.41.467.607 1.049t.198 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.233q-.198.055-.375-.035m-3.892 0q-.177-.09-.233-.288q-.056-.199.035-.376l.152-.313q.111-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T7.892 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.3-.232q.192-.056.369.035q.177.09.242.288t-.044.375l-.177.294q-.13.245-.206.511t-.075.541q0 .427.157.829t.426.729q.41.467.617 1.049t.208 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.232t-.375-.034m-3.892 0q-.177-.09-.233-.289t.035-.375l.157-.313q.112-.264.174-.54t.063-.55q0-.428-.135-.82q-.134-.392-.404-.719q-.41-.487-.64-1.078Q4 6.454 4 5.82q0-.402.102-.792t.312-.75l.157-.27q.11-.176.298-.232t.366.034t.242.289t-.044.375l-.177.294q-.131.239-.206.508t-.075.544q0 .427.157.829t.426.729q.41.467.62 1.049t.21 1.197q0 .421-.095.812q-.095.39-.26.769l-.158.327q-.09.177-.288.233t-.375-.035M8.822 20q-.414 0-.688-.274t-.274-.687t.274-.688t.687-.274h6.043q.39 0 .74.142t.621.398v-1.369q0-1.577.446-3.079t1.095-2.961l.417-.935q.313-.702.21-1.451q-.105-.749-.637-1.287q-.123-.143-.185-.296q-.062-.154-.062-.314q0-.363.26-.625t.621-.261q.327 0 .627.176t.448.49q.268.53.401 1.099q.134.569.134 1.173q0 .342-.04.672t-.147.667l-2.227 8.632q-.142.477-.516.765t-.857.287z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.996 11.729q-.177-.09-.232-.288q-.056-.199.034-.376l.152-.313q.112-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T11.784 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.301-.232t.368.035q.177.09.242.288q.066.198-.044.375l-.177.294q-.13.245-.205.52t-.076.552q0 .427.167.819q.166.392.436.719q.41.467.607 1.049t.198 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.233q-.198.055-.375-.035m-3.892 0q-.177-.09-.233-.288q-.056-.199.035-.376l.152-.313q.111-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T7.892 5.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.3-.232q.192-.056.369.035q.177.09.242.288t-.044.375l-.177.294q-.13.245-.206.511t-.075.541q0 .427.157.829t.426.729q.41.467.617 1.049t.208 1.197q0 .421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.232t-.375-.034m-3.892 0q-.177-.09-.233-.289t.035-.375l.157-.313q.112-.264.174-.54t.063-.55q0-.428-.135-.82q-.134-.392-.404-.719q-.41-.487-.64-1.078Q4 6.454 4 5.82q0-.402.102-.792t.312-.75l.157-.27q.11-.176.298-.232t.366.034t.242.289t-.044.375l-.177.294q-.131.239-.206.508t-.075.544q0 .427.157.829t.426.729q.41.467.62 1.049t.21 1.197q0 .421-.095.812q-.095.39-.26.769l-.158.327q-.09.177-.288.233t-.375-.035M8.822 20q-.414 0-.688-.274t-.274-.687t.274-.688t.687-.274h6.043q.39 0 .74.142t.621.398v-1.369q0-1.577.446-3.079t1.095-2.961l.417-.935q.313-.702.21-1.451q-.105-.749-.637-1.287q-.123-.143-.185-.296q-.062-.154-.062-.314q0-.363.26-.625t.621-.261q.327 0 .627.176t.448.49q.268.53.401 1.099q.134.569.134 1.173q0 .342-.04.672t-.147.667l-2.227 8.632q-.142.477-.516.765t-.857.287z"/></svg>
</template>

CSS

.icon-seat-heat-right-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%22M12.996%2011.729q-.177-.09-.232-.288q-.056-.199.034-.376l.152-.313q.112-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T11.784%205.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.301-.232t.368.035q.177.09.242.288q.066.198-.044.375l-.177.294q-.13.245-.205.52t-.076.552q0%20.427.167.819q.166.392.436.719q.41.467.607%201.049t.198%201.197q0%20.421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.233q-.198.055-.375-.035m-3.892%200q-.177-.09-.233-.288q-.056-.199.035-.376l.152-.313q.111-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T7.892%205.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.3-.232q.192-.056.369.035q.177.09.242.288t-.044.375l-.177.294q-.13.245-.206.511t-.075.541q0%20.427.157.829t.426.729q.41.467.617%201.049t.208%201.197q0%20.421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.232t-.375-.034m-3.892%200q-.177-.09-.233-.289t.035-.375l.157-.313q.112-.264.174-.54t.063-.55q0-.428-.135-.82q-.134-.392-.404-.719q-.41-.487-.64-1.078Q4%206.454%204%205.82q0-.402.102-.792t.312-.75l.157-.27q.11-.176.298-.232t.366.034t.242.289t-.044.375l-.177.294q-.131.239-.206.508t-.075.544q0%20.427.157.829t.426.729q.41.467.62%201.049t.21%201.197q0%20.421-.095.812q-.095.39-.26.769l-.158.327q-.09.177-.288.233t-.375-.035M8.822%2020q-.414%200-.688-.274t-.274-.687t.274-.688t.687-.274h6.043q.39%200%20.74.142t.621.398v-1.369q0-1.577.446-3.079t1.095-2.961l.417-.935q.313-.702.21-1.451q-.105-.749-.637-1.287q-.123-.143-.185-.296q-.062-.154-.062-.314q0-.363.26-.625t.621-.261q.327%200%20.627.176t.448.49q.268.53.401%201.099q.134.569.134%201.173q0%20.342-.04.672t-.147.667l-2.227%208.632q-.142.477-.516.765t-.857.287z%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%22M12.996%2011.729q-.177-.09-.232-.288q-.056-.199.034-.376l.152-.313q.112-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T11.784%205.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.301-.232t.368.035q.177.09.242.288q.066.198-.044.375l-.177.294q-.13.245-.205.52t-.076.552q0%20.427.167.819q.166.392.436.719q.41.467.607%201.049t.198%201.197q0%20.421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.233q-.198.055-.375-.035m-3.892%200q-.177-.09-.233-.288q-.056-.199.035-.376l.152-.313q.111-.263.167-.53q.056-.266.056-.541q0-.427-.128-.829t-.397-.729q-.39-.506-.627-1.097T7.892%205.8q0-.402.105-.783q.105-.38.309-.74l.152-.27q.11-.176.3-.232q.192-.056.369.035q.177.09.242.288t-.044.375l-.177.294q-.13.245-.206.511t-.075.541q0%20.427.157.829t.426.729q.41.467.617%201.049t.208%201.197q0%20.421-.092.812q-.092.39-.258.769l-.158.327q-.09.177-.288.232t-.375-.034m-3.892%200q-.177-.09-.233-.289t.035-.375l.157-.313q.112-.264.174-.54t.063-.55q0-.428-.135-.82q-.134-.392-.404-.719q-.41-.487-.64-1.078Q4%206.454%204%205.82q0-.402.102-.792t.312-.75l.157-.27q.11-.176.298-.232t.366.034t.242.289t-.044.375l-.177.294q-.131.239-.206.508t-.075.544q0%20.427.157.829t.426.729q.41.467.62%201.049t.21%201.197q0%20.421-.095.812q-.095.39-.26.769l-.158.327q-.09.177-.288.233t-.375-.035M8.822%2020q-.414%200-.688-.274t-.274-.687t.274-.688t.687-.274h6.043q.39%200%20.74.142t.621.398v-1.369q0-1.577.446-3.079t1.095-2.961l.417-.935q.313-.702.21-1.451q-.105-.749-.637-1.287q-.123-.143-.185-.296q-.062-.154-.062-.314q0-.363.26-.625t.621-.261q.327%200%20.627.176t.448.49q.268.53.401%201.099q.134.569.134%201.173q0%20.342-.04.672t-.147.667l-2.227%208.632q-.142.477-.516.765t-.857.287z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols-light/seat-heat-right-rounded.svg?color=%231a73e8&size=48