Skip to content

plant-pot

plant • leaf • nature • pot • houseplant • gardening • planter • decor • indoor

Created:

v1.45.0

Last changed:

v1.45.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, PlantPot } from 'lucide';

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

<i data-lucide="plant-pot"></i>  
tsx
import { PlantPot } from 'lucide-react';

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

export default App;
vue
<script setup>
import { PlantPot } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="plant-pot"></lucide-icon>
html
<div class="icon-plant-pot"></div>

See this icon in action

Bug
Feature
Plant
112
8
11