Skip to content

book-key

code • coding • version control • git • repository • private • public • secret • unlocked • hidden • revealed • knowledge • learning

Created:

v0.142.0

Last changed:

v0.238.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<i data-lucide="book-key"></i>
tsx
import { BookKey } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-book-key"></div>