Skip to content

ribbon

awareness • strip • band • tape • strap • cordon

Created:

v0.292.0

Last changed:

v0.292.0

Contributors:

karsa-mistmere
html
<i data-lucide="ribbon"></i>
tsx
import { Ribbon } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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