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-x

post-it • comment • annotation • reaction • memo • reminder • todo • task • idea • brainstorm • document • page • paper • sheet • stationary • office • close • cancel • delete • remove

Created:

v1.15.0

Last changed:

v1.15.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Sticky
112
8
11