Waves icon

Waves is a Google Material Symbol from the Activities 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.

Outlined, unfilled, weight 400

waves_outlined_fill0_wght400.svg

Waves 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,[email protected],100..700,0..1,-50..200&icon_names=waves" />

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

Waves icon in React

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

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

Waves icon in Vue

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

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

Waves icon in Angular

With Angular Material and the font from the HTML tab:

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

Waves 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.waves, fill: 0, weight: 400)

Waves icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/waves.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 20.35v-1.5q.7-.075 1.2-.4t1-.687q.5-.363 1.125-.638t1.55-.275q.925 0 1.575 .313t1.188 .687q.537 .375 1.087 .688t1.275 .312q.725 0 1.275-.312t1.088-.688q.537-.375 1.187-.687t1.575-.313q.925 0 1.538 .275t1.125 .638Q20.3 18.125 20.8 18.45t1.2 .4v1.5q-.875-.05-1.462-.362t-1.1-.675Q18.925 18.95 18.4 18.65t-1.275-.3q-.75 0-1.312 .313t-1.1 .687q-.538 .375-1.175 .688T12 20.35q-.9 0-1.537-.312t-1.175-.688q-.538-.375-1.1-.687T6.875 18.35q-.75 0-1.287 .3T4.55 19.313q-.5 .362-1.087 .675T2 20.35Zm0-4.4v-1.5q.7-.075 1.2-.4t1-.687q.5-.363 1.125-.638t1.55-.275q.925 0 1.575 .313t1.188 .687q.537 .375 1.087 .688t1.275 .312q.725 0 1.275-.312t1.088-.688q.537-.375 1.187-.687t1.575-.313q.925 0 1.538 .275t1.125 .638Q20.3 13.725 20.8 14.05t1.2 .4v1.5q-.875-.1-1.462-.425t-1.1-.675Q18.925 14.5 18.4 14.225t-1.275-.275q-.75 0-1.3 .313T14.725 14.95q-.55 .375-1.187 .688T12 15.95q-.9 0-1.537-.312t-1.175-.688q-.538-.375-1.1-.687T6.875 13.95q-.75 0-1.287 .3T4.55 14.913q-.5 .362-1.087 .675T2 15.95Zm0-4.4v-1.5q.7-.05 1.2-.362t1-.675q.5-.363 1.125-.663t1.55-.3q.925 0 1.575 .313t1.188 .687q.537 .375 1.087 .688t1.275 .312q.725 0 1.275-.312t1.088-.688q.537-.375 1.187-.687t1.575-.313q.925 0 1.538 .3t1.125 .663q.512 .362 1.012 .675t1.2 .362v1.5q-.875-.05-1.462-.362t-1.1-.675Q18.925 10.15 18.4 9.85t-1.275-.3q-.75 0-1.312 .313t-1.1 .687q-.538 .375-1.175 .688T12 11.55q-.9 0-1.537-.312t-1.175-.688q-.538-.375-1.1-.687T6.875 9.55q-.75 0-1.287 .3T4.55 10.513q-.5 .362-1.087 .675T2 11.55Zm0-4.4v-1.5q.7-.075 1.2-.4t1-.687q.5-.363 1.125-.638t1.55-.275q.925 0 1.575 .313t1.188 .687q.537 .375 1.087 .688t1.275 .312q.725 0 1.275-.312t1.088-.688q.537-.375 1.187-.687t1.575-.313q.925 0 1.538 .275t1.125 .638Q20.3 4.925 20.8 5.25t1.2 .4v1.5q-.875-.05-1.462-.362t-1.1-.675Q18.925 5.75 18.4 5.45t-1.275-.3q-.75 0-1.312 .313t-1.1 .687q-.538 .375-1.175 .688T12 7.15q-.9 0-1.537-.312t-1.175-.688q-.538-.375-1.1-.687T6.875 5.15q-.75 0-1.287 .3T4.55 6.113q-.5 .362-1.087 .675T2 7.15Z" />
</vector>

Waves icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/waves.svg" width="24" height="24" alt="Waves">

Waves 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

NameWaves
Ligaturewaves
Code pointU+E176
CategoryActivities
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/waves.svg, waves-fill.svg
FlutterSymbols.waves
LicenseApache License 2.0 (© Google LLC)

Keywords

activitiesmedialinessignalaudiosoundmusicvolumewaterwavefrequencywaveformequalizer

Related icons