File: bean.md | Updated: 11/15/2025
Return to top
legume • soy • food • seed
VanillaReactVueSveltePreactSolidAngularIcon font
js
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="bean"></i>');
tsx
import { Bean } from 'lucide-react';
const App = () => {
return (
<Bean />
);
};
export default App;
vue
<script setup>
import { Bean } from 'lucide-vue-next';
</script>
<template>
<Bean />
</template>
svelte
<script>
import { Bean } from 'lucide-svelte';
</script>
<Bean />
tsx
import { Bean } from 'lucide-preact';
const App = () => {
return (
<Bean />
);
};
export default App;
tsx
import { Bean } from 'lucide-solid';
const App = () => {
return (
<Bean />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Bean } from 'lucide-angular';
@NgModule({
imports: [\
LucideAngularModule.pick({ Bean })\
],
})
// app.component.html
<lucide-icon name="bean"></lucide-icon>
html
<div class="icon-bean"></div>
BeanCancel
Bug
Feature
Bean
Documents Readme Bean 12
112
8
11
2
bean-off