waves-vertical
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