We value your feedback!

Can you spare a moment to take our survey?
Your feedback helps us improve Lucide and make it better for everyone.

Skip to content

sticky-notes

post-it • annotation • memo • reminder • todo • tasks • ideas • brainstorm • documents • notes • multiple • collection • group • stack • clone • duplicate • copy

Created:

v1.15.0

Last changed:

v1.15.0

Contributors:

karsa-mistmereericfennisdanielbayleyBarakudum
html
<script>
import { createIcons, stickyNotes } from 'lucide';

createIcons({
  icons: {
    stickyNotes
  }
});
</script>

<i data-lucide="sticky-notes"></i>  
tsx
import { StickyNotes } from 'lucide-react';

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

export default App;
vue
<script setup>
import { StickyNotes } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="sticky-notes"></lucide-icon>
html
<div class="icon-sticky-notes"></div>

See this icon in action

Bug
Feature
Sticky
112
8
11