Skip to content

square-kanban

projects • manage • overview • board • tickets • issues • roadmap • plan • intentions • productivity • work • agile • code • coding • toolbar • button

Created:

v0.0.0

Last changed:

v0.352.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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