Skip to content

bean-off

soy free • legume • soy • food • seed • allergy • intolerance • diet

Created:

v0.97.0

Last changed:

v0.133.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="bean-off"></i>
tsx
import { BeanOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-bean-off"></div>