Skip to content

life-buoy

preserver • life belt • lifesaver • help • rescue • ship • ring • raft • inflatable • wheel • donut

Created:

v0.0.0

Last changed:

v0.293.0

Contributors:

colebemisericfennisdanielbayleykarsa-mistmere
html
<i data-lucide="life-buoy"></i>
tsx
import { LifeBuoy } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-life-buoy"></div>