waves-horizontal
html
<script>
import { createIcons, wavesHorizontal } from 'lucide';
createIcons({
icons: {
wavesHorizontal
}
});
</script>
<i data-lucide="waves-horizontal"></i>
tsx
import { WavesHorizontal } from 'lucide-react';
const App = () => {
return (
<WavesHorizontal />
);
};
export default App;
vue
<script setup>
import { WavesHorizontal } from '@lucide/vue';
</script>
<template>
<WavesHorizontal />
</template>
svelte
<script>
import { WavesHorizontal } from 'lucide-svelte';
</script>
<WavesHorizontal />
tsx
import { WavesHorizontal } from 'lucide-preact';
const App = () => {
return (
<WavesHorizontal />
);
};
export default App;
tsx
import { WavesHorizontal } from 'lucide-solid';
const App = () => {
return (
<WavesHorizontal />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, WavesHorizontal } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ WavesHorizontal })
],
})
// app.component.html
<lucide-icon name="waves-horizontal"></lucide-icon>
html
<div class="icon-waves-horizontal"></div>
See this icon in action
Bug
Feature
Waves
112
8
11