Skip to content

story

stories • social media • instagram • facebook • meta • snapchat • sharing • content

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

jordan808
html
<i data-lucide="story"></i>
tsx
import { Story } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-story"></div>