Skip to content

sticky-note-text

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

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide-name="sticky-note-text"></i>
tsx
import { StickyNoteText } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-sticky-note-text"></div>
dart
Icon(LucideIcons.sticky-note-text);