Skip to content

book-heart

diary • romance • novel • journal • entry • entries • personal • private • secret • crush • like • love • emotion • feminine • girls • teens • teenager • therapy • theraputic • therapist • planner • organizer • organiser • notes • notepad • stationery • sketchbook • writing • written • reading • favorite • favourite • high school

Created:

v0.288.0

Last changed:

v0.288.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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