Skip to content

folder-kanban

projects • manage • overview • board • tickets • issues • roadmap • plan • intentions • productivity • work • agile • code • coding • directory • project • root

Created:

v0.250.0

Last changed:

v0.250.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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