Skip to content

medal

prize • sports • winner • trophy • award • achievement

Created:

v0.82.0

Last changed:

v0.82.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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