Skip to content

gem

diamond • crystal • ruby • jewellery • price • special • present • gift • ring • wedding • proposal • marriage • rubygems

Created:

v0.16.10

Last changed:

v0.253.0

Contributors:

conniumericfennis
html
<i data-lucide="gem"></i>
tsx
import { Gem } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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