Skip to content

book-elastic

moleskine • closure • strap • band • stationery • sketchbook • notes • notepad • organizer • organiser • planner • diary • journal • writing • written • writer • reading • high school • university • college • academy • student • study • homework • research

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="book-elastic"></i>
tsx
import { BookElastic } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-book-elastic"></div>
dart
Icon(LucideIcons.book-elastic);