Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

bean-off

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

创建时间:

v0.97.0

最后修改:

v0.133.0

Contributors:

karsa-mistmereericfennis
html
<script>
import { createIcons, beanOff } from 'lucide';

createIcons({
  icons: {
    beanOff
  }
});
</script>

<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';
</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
<div class="icon-bean-off"></div>

看看这个图标的实际效果

错误
功能
Bean
112
8
11