Skip to content

notebook-pen

pencil • notepad • notes • noted • stationery • sketchbook • organizer • organiser • planner • diary • journal • writing • write • written • reading • high school • university • college • academy • student • study • research • homework • eraser • rubber

Created:

v0.307.0

Last changed:

v0.307.0

Contributors:

danielbayley
html
<i data-lucide="notebook-pen"></i>
tsx
import { NotebookPen } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-notebook-pen"></div>