Toilet icon
Used to represent a toilet. The Toilet icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_toilet_16_regular.svg
Toilet icon in React
npm install @fluentui/react-icons
import { Toilet16Regular } from "@fluentui/react-icons";
export function Example() {
return <Toilet16Regular aria-label="Toilet" />;
}Use the Toilet icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { Toilet16Regular, Toilet16Filled } from "@fluentui/react-icons";
export function Example() {
return <Toilet16Regular aria-label="Toilet" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_toilet_20_regular.svg" width="20" height="20" alt="Toilet"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M16.5 1c.83 0 1.5.67 1.5 1.5v6a2.5 2.5 0 0 1-2 2.45V16a2 2 0 0 1-2 2H6a1 1 0 0 1-.9-1.42l1.28-2.8a6 6 0 0 1-2.33-4.02A2 2 0 0 1 5 6h8V2.5c0-.83.67-1.5 1.5-1.5zM15 12.31a6 6 0 0 1-7.77 2.01L6 17h8a1 1 0 0 0 1-1zM13.5 10H5.1a5 5 0 0 0 9.55.85A2.5 2.5 0 0 1 13.5 10m1-8a.5.5 0 0 0-.5.5v6a1.5 1.5 0 0 0 3 0v-6a.5.5 0 0 0-.5-.5zM5 7a1 1 0 0 0 0 2h8.05a3 3 0 0 1-.05-.5V7z"/></svg>Details
| Name | Toilet |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_toilet_20_regular.svg |
| Filled file | ic_fluent_toilet_20_filled.svg |
| React (Regular) | Toilet16Regular, Toilet20Regular |
| React (Filled) | Toilet16Filled, Toilet20Filled |
| License | MIT (© Microsoft Corporation) |