Skip to content

gantt-chart-square

projects • manage • overview • roadmap • plan • intentions • timeline • deadline • date • event • range • period • productivity • work • agile • code • coding • toolbar • button

Created:

v0.250.0

Last changed:

v0.258.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="gantt-chart-square"></i>
tsx
import { GanttChartSquare } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-gantt-chart-square"></div>
dart
Icon(LucideIcons.gantt-chart-square);