Skip to content

folder-closed

directory • closed

Created:

v0.68.0

Last changed:

v0.289.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="folder-closed"></i>
tsx
import { FolderClosed } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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