Skip to content

folder-output

directory • import • export

Created:

v0.68.0

Last changed:

v0.330.0

Contributors:

karsa-mistmerejguddas
html
<i data-lucide="folder-output"></i>
tsx
import { FolderOutput } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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