Skip to content

leafy-green

salad • lettuce • vegetable • chard • cabbage • bok choy

Created:

v0.210.0

Last changed:

v0.210.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="leafy-green"></i>
tsx
import { LeafyGreen } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-leafy-green"></div>
dart
Icon(LucideIcons.leafy-green);