Skip to content

book-a

dictionary • define • definition • thesaurus • encyclopedia • encyclopaedia • reading • booklet • magazine • leaflet • pamphlet • tome • library • writing • written • writer • author • story • script • fiction • novel • information • knowledge • education • high school • university • college • academy • student • study • learning • homework • research • language • translate • alphabetical • a-z • ordered

Created:

v0.288.0

Last changed:

v0.288.0

Contributors:

danielbayley
html
<i data-lucide="book-a"></i>
tsx
import { BookA } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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