Skip to content

book-image

images • pictures • photos • album • collection • event • magazine • catalog • catalogue • brochure • browse • gallery

Created:

v0.288.0

Last changed:

v0.288.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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