bath-bedrock-outline from Material Symbols by Google · Outline · Travel · Apache-2.0 Free for personal and commercial use.

Name
bath-bedrock-outline
Set
Material Symbols
Style
Outline
Category
Travel
Viewbox
24×24
License
Apache 2.0

5 other variants in Material Symbols

The same icon in other sets

More travel icons from Material Symbols

Use the bath bedrock icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M9 18v-7h9q1.65 0 2.825 1.175T22 15v3zm2-5v3zm-9 8v-2h20v2zm.875-3.875Q2 16.25 2 15t.875-2.125T5 12t2.125.875T8 15t-.875 2.125T5 18t-2.125-.875m2.838-1.412Q6 15.425 6 15t-.288-.712T5 14t-.712.288T4 15t.288.713T5 16t.713-.288M11 16h9v-1q0-.825-.587-1.412T18 13h-7zM7.625 9q.125-.275.163-.513T7.825 8q0-.475-.213-.913t-.637-.962q-.5-.625-.75-1.213T5.975 3.6q0-.35.05-.737T6.175 2h2q-.1.425-.137.762T8 3.375q0 .5.163.863t.537.812q.55.65.813 1.275t.262 1.35q0 .3-.038.638T9.626 9zm4 0q.125-.275.163-.513T11.825 8q0-.475-.212-.913t-.638-.962q-.5-.625-.737-1.213T10 3.6q0-.35.05-.737T10.2 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T13.625 9zm4.05 0q.125-.275.163-.513T15.875 8q0-.475-.213-.913t-.637-.962q-.5-.625-.737-1.213T14.05 3.6q0-.35.05-.737T14.25 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T17.675 9z"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsBathBedrockOutline(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="M9 18v-7h9q1.65 0 2.825 1.175T22 15v3zm2-5v3zm-9 8v-2h20v2zm.875-3.875Q2 16.25 2 15t.875-2.125T5 12t2.125.875T8 15t-.875 2.125T5 18t-2.125-.875m2.838-1.412Q6 15.425 6 15t-.288-.712T5 14t-.712.288T4 15t.288.713T5 16t.713-.288M11 16h9v-1q0-.825-.587-1.412T18 13h-7zM7.625 9q.125-.275.163-.513T7.825 8q0-.475-.213-.913t-.637-.962q-.5-.625-.75-1.213T5.975 3.6q0-.35.05-.737T6.175 2h2q-.1.425-.137.762T8 3.375q0 .5.163.863t.537.812q.55.65.813 1.275t.262 1.35q0 .3-.038.638T9.626 9zm4 0q.125-.275.163-.513T11.825 8q0-.475-.212-.913t-.638-.962q-.5-.625-.737-1.213T10 3.6q0-.35.05-.737T10.2 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T13.625 9zm4.05 0q.125-.275.163-.513T15.875 8q0-.475-.213-.913t-.637-.962q-.5-.625-.737-1.213T14.05 3.6q0-.35.05-.737T14.25 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T17.675 9z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M9 18v-7h9q1.65 0 2.825 1.175T22 15v3zm2-5v3zm-9 8v-2h20v2zm.875-3.875Q2 16.25 2 15t.875-2.125T5 12t2.125.875T8 15t-.875 2.125T5 18t-2.125-.875m2.838-1.412Q6 15.425 6 15t-.288-.712T5 14t-.712.288T4 15t.288.713T5 16t.713-.288M11 16h9v-1q0-.825-.587-1.412T18 13h-7zM7.625 9q.125-.275.163-.513T7.825 8q0-.475-.213-.913t-.637-.962q-.5-.625-.75-1.213T5.975 3.6q0-.35.05-.737T6.175 2h2q-.1.425-.137.762T8 3.375q0 .5.163.863t.537.812q.55.65.813 1.275t.262 1.35q0 .3-.038.638T9.626 9zm4 0q.125-.275.163-.513T11.825 8q0-.475-.212-.913t-.638-.962q-.5-.625-.737-1.213T10 3.6q0-.35.05-.737T10.2 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T13.625 9zm4.05 0q.125-.275.163-.513T15.875 8q0-.475-.213-.913t-.637-.962q-.5-.625-.737-1.213T14.05 3.6q0-.35.05-.737T14.25 2h2q-.1.425-.15.762t-.05.613q0 .5.175.863t.55.812q.55.65.8 1.275t.25 1.35q0 .3-.037.638T17.675 9z"/></svg>
</template>

CSS

.icon-bath-bedrock-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%22M9%2018v-7h9q1.65%200%202.825%201.175T22%2015v3zm2-5v3zm-9%208v-2h20v2zm.875-3.875Q2%2016.25%202%2015t.875-2.125T5%2012t2.125.875T8%2015t-.875%202.125T5%2018t-2.125-.875m2.838-1.412Q6%2015.425%206%2015t-.288-.712T5%2014t-.712.288T4%2015t.288.713T5%2016t.713-.288M11%2016h9v-1q0-.825-.587-1.412T18%2013h-7zM7.625%209q.125-.275.163-.513T7.825%208q0-.475-.213-.913t-.637-.962q-.5-.625-.75-1.213T5.975%203.6q0-.35.05-.737T6.175%202h2q-.1.425-.137.762T8%203.375q0%20.5.163.863t.537.812q.55.65.813%201.275t.262%201.35q0%20.3-.038.638T9.626%209zm4%200q.125-.275.163-.513T11.825%208q0-.475-.212-.913t-.638-.962q-.5-.625-.737-1.213T10%203.6q0-.35.05-.737T10.2%202h2q-.1.425-.15.762t-.05.613q0%20.5.175.863t.55.812q.55.65.8%201.275t.25%201.35q0%20.3-.037.638T13.625%209zm4.05%200q.125-.275.163-.513T15.875%208q0-.475-.213-.913t-.637-.962q-.5-.625-.737-1.213T14.05%203.6q0-.35.05-.737T14.25%202h2q-.1.425-.15.762t-.05.613q0%20.5.175.863t.55.812q.55.65.8%201.275t.25%201.35q0%20.3-.037.638T17.675%209z%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%22M9%2018v-7h9q1.65%200%202.825%201.175T22%2015v3zm2-5v3zm-9%208v-2h20v2zm.875-3.875Q2%2016.25%202%2015t.875-2.125T5%2012t2.125.875T8%2015t-.875%202.125T5%2018t-2.125-.875m2.838-1.412Q6%2015.425%206%2015t-.288-.712T5%2014t-.712.288T4%2015t.288.713T5%2016t.713-.288M11%2016h9v-1q0-.825-.587-1.412T18%2013h-7zM7.625%209q.125-.275.163-.513T7.825%208q0-.475-.213-.913t-.637-.962q-.5-.625-.75-1.213T5.975%203.6q0-.35.05-.737T6.175%202h2q-.1.425-.137.762T8%203.375q0%20.5.163.863t.537.812q.55.65.813%201.275t.262%201.35q0%20.3-.038.638T9.626%209zm4%200q.125-.275.163-.513T11.825%208q0-.475-.212-.913t-.638-.962q-.5-.625-.737-1.213T10%203.6q0-.35.05-.737T10.2%202h2q-.1.425-.15.762t-.05.613q0%20.5.175.863t.55.812q.55.65.8%201.275t.25%201.35q0%20.3-.037.638T13.625%209zm4.05%200q.125-.275.163-.513T15.875%208q0-.475-.213-.913t-.637-.962q-.5-.625-.737-1.213T14.05%203.6q0-.35.05-.737T14.25%202h2q-.1.425-.15.762t-.05.613q0%20.5.175.863t.55.812q.55.65.8%201.275t.25%201.35q0%20.3-.037.638T17.675%209z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/bath-bedrock-outline.svg?color=%231a73e8&size=48