Skip to content

folder-git

directory • root • project • git • repo

Created:

v0.168.0

Last changed:

v0.289.0

Contributors:

danielbayleykarsa-mistmereericfennis
html
<i data-lucide="folder-git"></i>
tsx
import { FolderGit } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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