Skip to content

folder

directory

Created:

v0.0.0

Last changed:

v0.289.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="folder"></i>
tsx
import { Folder } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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