Skip to content

folder-open-dot

directory • root • project • active • current • pinned

Created:

v0.250.0

Last changed:

v0.250.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

<div class="icon-folder-open-dot"></div>