Skip to content

folder-root

directory • root • project • git • repo

Created:

v0.250.0

Last changed:

v0.250.0

Contributors:

danielbayley
html
<i data-lucide="folder-root"></i>
tsx
import { FolderRoot } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-folder-root"></div>