square-kanban-dashed
  
  html
  
<i data-lucide-name="square-kanban-dashed"></i>
  
  
  tsx
  
import { SquareKanbanDashed } from 'lucide-react';
const App = () => {
  return (
    <SquareKanbanDashed />
  );
};
export default App;
  
  
  vue
  
<script setup>
  import { SquareKanbanDashed } from 'lucide-vue-next';
</script>
<template>
  <SquareKanbanDashed />
</template>
  
  
  svelte
  
<script>
import { SquareKanbanDashed } from 'lucide-svelte';
</script>
<SquareKanbanDashed />
  
  
  tsx
  
import { SquareKanbanDashed } from 'lucide-preact';
const App = () => {
  return (
    <SquareKanbanDashed />
  );
};
export default App;
  
  
  tsx
  
import { SquareKanbanDashed } from 'lucide-solid';
const App = () => {
  return (
    <SquareKanbanDashed />
  );
};
export default App;
  
  
  tsx
  
// app.module.ts
import { LucideAngularModule, SquareKanbanDashed } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ SquareKanbanDashed })
  ],
})
// app.component.html
<lucide-icon name="square-kanban-dashed"></lucide-icon>
  
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-square-kanban-dashed"></div>
  
  
  dart
  
Icon(LucideIcons.square-kanban-dashed);