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-note-off

post-it • comment • annotation • reaction • memo • reminder • todo • task • idea • brainstorm • document • page • paper • sheet • stationary • office • disabled • hidden • mute • inactive

Created:

v1.15.0

Last changed:

v1.15.0

Contributors:

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

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

<i data-lucide="sticky-note-off"></i>  
tsx
import { StickyNoteOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Sticky
112
8
11