Skip to content

sticky-note

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

Created:

v0.67.0

Last changed:

v0.311.0

Contributors:

karsa-mistmereericfennisdanielbayley
html
<i data-lucide="sticky-note"></i>
tsx
import { StickyNote } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-sticky-note"></div>