Skip to content

folder-lock

directory • lock • private • security • protected

Created:

v0.68.0

Last changed:

v0.289.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="folder-lock"></i>
tsx
import { FolderLock } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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