Skip to content

sprout

leaf • nature • plant

Created:

v0.13.0

Last changed:

v0.18.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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