Skip to content

tree-palm

vacation • leisure • island

Created:

v0.17.7

Last changed:

v0.352.0

Contributors:

ericfennis
html
<i data-lucide="tree-palm"></i>
tsx
import { TreePalm } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-tree-palm"></div>