Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

book-key

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

创建时间:

v0.142.0

最后修改:

v0.564.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<script>
import { createIcons, bookKey } from 'lucide';

createIcons({
  icons: {
    bookKey
  }
});
</script>

<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';
</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
<div class="icon-book-key"></div>

看看这个图标的实际效果

错误
功能
Book
112
8
11