We value your feedback!

Can you spare a moment to take our survey?
Your feedback helps us improve Lucide and make it better for everyone.

Skip to content

waves-vertical

steam • warmth • temperature • burn • hot • boiling • heat • smoke • vapor • smell • aroma • sauna

Created:

v1.13.0

Last changed:

v1.13.0

Contributors:

karsa-mistmereericfennisjamiemlaw
html
<script>
import { createIcons, wavesVertical } from 'lucide';

createIcons({
  icons: {
    wavesVertical
  }
});
</script>

<i data-lucide="waves-vertical"></i>  
tsx
import { WavesVertical } from 'lucide-react';

const App = () => {
  return (
    <WavesVertical />
  );
};

export default App;
vue
<script setup>
import { WavesVertical } from '@lucide/vue';
</script>

<template>
  <WavesVertical />
</template>
svelte
<script>
import { WavesVertical } from 'lucide-svelte';
</script>

<WavesVertical />
tsx
import { WavesVertical } from 'lucide-preact';

const App = () => {
  return (
    <WavesVertical />
  );
};

export default App;
tsx
import { WavesVertical } from 'lucide-solid';

const App = () => {
  return (
    <WavesVertical />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, WavesVertical } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ WavesVertical })
  ],
})

// app.component.html
<lucide-icon name="waves-vertical"></lucide-icon>
html
<div class="icon-waves-vertical"></div>

See this icon in action

Bug
Feature
Waves
112
8
11