Skip to content

book-open-text

reading • pages • booklet • magazine • leaflet • pamphlet • library • writing • written • writer • author • story • script • fiction • novel • information • knowledge • education • high school • university • college • academy • student • study • learning • homework • research • documentation • revealed

Created:

v0.288.0

Last changed:

v0.288.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

<div class="icon-book-open-text"></div>