Skip to content

biohazard

fallout • waste • biology • chemistry • chemical • element

Created:

v0.190.0

Last changed:

v0.190.0

Contributors:

karsa-mistmeredanielbayleyericfennis
html
<i data-lucide="biohazard"></i>
tsx
import { Biohazard } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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