Hot Tub icon

Hot Tub is a Google Material Symbol from the Household category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

GradeOptical size

Outlined, unfilled, weight 400

hot_tub_outlined_fill0_wght400.svg

Hot Tub icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=hot_tub" />

<span class="material-symbols-outlined">hot_tub</span>

Hot Tub icon in React

// With the font from the HTML tab:
export function HotTubIcon() {
  return (
    <span className="material-symbols-outlined">
      hot_tub
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import HotTubIcon from "@material-symbols/svg-400/outlined/hot_tub.svg?react";

Hot Tub icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import HotTubOutlinedIcon from "@mui/icons-material/HotTubOutlined";

<HotTubOutlinedIcon />

Hot Tub icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">hot_tub</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import HotTubIcon from "@material-symbols/svg-400/outlined/hot_tub.svg?component"; -->

Hot Tub icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">hot_tub</mat-icon>

Hot Tub icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.hot_tub, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.hot_tub_outlined)

Hot Tub icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_hot_tub.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M6.65 8.325q-.725 0-1.225-.5t-.5-1.225q0-.725 .5-1.225t1.225-.5q.725 0 1.225 .5t.5 1.225q0 .725-.5 1.225t-1.225 .5ZM3.5 22q-.625 0-1.062-.437T2 20.5v-7.825h3.05v-1.4q0-.775 .538-1.325t1.312-.55q.45 0 .863 .2t.712 .55l1.425 1.6q.25 .275 .525 .5t.575 .425h11v7.825q0 .625-.437 1.063T20.5 22H3.5Zm15.05-12 .025-.3q.05-.8-.262-1.525T17.55 6.8q-.575-.8-.85-1.712t-.175-1.863l.025-.225h1.35l-.025 .35q-.05 .725 .188 1.425t.687 1.3q.625 .8 .963 1.75t.212 1.95l-.025 .225h-1.35Zm-4 0 .025-.3q.05-.8-.262-1.525T13.55 6.8q-.575-.8-.85-1.712t-.175-1.863l.025-.225h1.35l-.025 .35q-.05 .725 .188 1.425t.687 1.3q.625 .8 .963 1.75t.212 1.95l-.025 .225h-1.35Zm2.45 10.5h2.75v-6.325H17v6.325Zm-4.25 0h2.75v-6.325H12.75v6.325Zm-4.25 0h2.75v-6.325H8.5v6.325Zm-4.25 0h2.75v-6.325H4.25v6.325Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_hot_tub), contentDescription = "Hot Tub")

Hot Tub icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/hot_tub.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/hot_tub.svg" width="24" height="24" alt="Hot Tub">

Hot Tub icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameHot Tub
Ligaturehot_tub
Code pointU+EB46
CategoryHousehold
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/hot_tub.svg, hot_tub-fill.svg
FlutterSymbols.hot_tub (Material Icons: Icons.hot_tub)
MUI@mui/icons-material/HotTub
LicenseApache License 2.0 (© Google LLC)

Keywords

householdlineshumanpersontravelhealthleisure

Related icons