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

Skip to content

library

books • reading • written • authors • stories • fiction • novels • information • knowledge • education • high school • university • college • academy • learning • study • research • collection • vinyl • records • albums • music • package

创建时间:

v0.1.0-alpha.0

最后修改:

v0.18.0

Contributors:

johnleteycsandmanericfennis
html
<script>
import { createIcons, library } from 'lucide';

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

<i data-lucide="library"></i>  
tsx
import { Library } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Library } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="library"></lucide-icon>
html
<div class="icon-library"></div>

看看这个图标的实际效果

错误
功能
Library
112
8
11