shrub
html
<script>
import { createIcons, shrub } from 'lucide';
createIcons({
icons: {
shrub
}
});
</script>
<i data-lucide="shrub"></i>
tsx
import { Shrub } from 'lucide-react';
const App = () => {
return (
<Shrub />
);
};
export default App;
vue
<script setup>
import { Shrub } from 'lucide-vue-next';
</script>
<template>
<Shrub />
</template>
svelte
<script>
import { Shrub } from 'lucide-svelte';
</script>
<Shrub />
tsx
import { Shrub } from 'lucide-preact';
const App = () => {
return (
<Shrub />
);
};
export default App;
tsx
import { Shrub } from 'lucide-solid';
const App = () => {
return (
<Shrub />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Shrub } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ Shrub })
],
})
// app.component.html
<lucide-icon name="shrub"></lucide-icon>
html
<div class="icon-shrub"></div>
See this icon in action
Bug
Feature
Shrub
112
8
11