Skip to content

bubbles

water • cleaning • soap • bath • hygiene • freshness • wash • foam • cleanliness • shampoo • purity • splash • lightness • airy • relaxation • spa • bubbly • fluid • floating • drop

Created:

v0.493.0

Last changed:

v0.493.0

Contributors:

vqh2602jguddas
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="bubbles"></i>');  
tsx
import { Bubbles } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Bubbles } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="bubbles"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-bubbles"></div>

See this icon in action

Bug
Feature
Bubbles
112
8
11