Flood icon

Flood is a Google Material Symbol from the Social 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

flood_outlined_fill0_wght400.svg

Flood 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=flood" />

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

Flood icon in React

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

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

Flood 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 FloodOutlinedIcon from "@mui/icons-material/FloodOutlined";

<FloodOutlinedIcon />

Flood icon in Vue

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

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

Flood icon in Angular

With Angular Material and the font from the HTML tab:

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

Flood 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.flood, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Flood icon in Android

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

<!-- res/drawable/ic_flood.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="M2 22v-1.5q.85-.075 1.363-.537T5.2 19.5q1.325 0 1.888 .5t1.512 .5q.95 0 1.513-.5t1.887-.5q1.325 0 1.9 .5t1.5 .5q.95 0 1.513-.625t1.887-.625q1.325 0 1.838 .588T22 20.5v1.5q-1.05 0-1.712-.625T18.8 20.75q-.825 0-1.45 .625t-1.95 .625q-1.325 0-1.95-.5t-1.45-.5q-.825 0-1.45 .5t-1.95 .5q-1.325 0-1.95-.5t-1.45-.5q-.825 0-1.487 .5T2 22Zm6.6-4.75q-1.325 0-1.95-.5t-1.45-.5q-.825 0-1.487 .5T2 17.25v-1.5q.85-.075 1.363-.537T5.2 14.75q.275 0 .563 .038T6.275 14.9l-1.275-4.625-1.55 1.925-1.175-.95 7.5-9.25 11.125 4.25-.55 1.4-2.3-.875 2.15 8.025q.45 .25 .913 .6t.887 .325v1.525q-1.05 0-1.712-.625T18.8 16q-.825 0-1.45 .625t-1.95 .625q-1.325 0-1.95-.5t-1.45-.5q-.825 0-1.45 .5t-1.95 .5Zm0-1.5q.775 0 1.388-.437T11.4 14.775l-.925-3.4 3.4-.9 1.375 5.275q.95 .1 1.563-.55t1.737-.7l-2.25-8.4-6.025-2.325-4.1 5.05 1.85 6.85q.175 .05 .3 .063t.275 .012Zm3.775-5.925Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_flood), contentDescription = "Flood")

Flood icon in SVG

npm install @material-symbols/svg-400

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

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

Flood 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

NameFlood
Ligatureflood
Code pointU+EBE6
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/flood.svg, flood-fill.svg
FlutterSymbols.flood (Material Icons: Icons.flood)
MUI@mui/icons-material/Flood
LicenseApache License 2.0 (© Google LLC)

Keywords

socialalertwarningclimatedangerweatherwateremergencywavesliquidwavehazardnatural

Related icons