Skip to content

library-square

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

Created:

v0.288.0

Last changed:

v0.288.0

Contributors:

danielbayley
html
<i data-lucide="library-square"></i>
tsx
import { LibrarySquare } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-library-square"></div>