gem-ring
lab
html
<script>
import { createIcons } from 'lucide';
import { gemRing } from '@lucide/lab';
createIcons({
icons: {
gemRing
}
});
</script>
<i data-lucide="gem-ring"></i>
tsx
import { Icon } from 'lucide-react';
import { gemRing } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={gemRing} />
);
};
export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { gemRing } from '@lucide/lab';
</script>
<template>
<Icon :iconNode="gemRing" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { gemRing } from '@lucide/lab';
</script>
<Icon iconNode={gemRing} />
tsx
import { Icon } from 'lucide-preact';
import { gemRing } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={gemRing} />
);
};
export default App;
tsx
import { Icon } from 'lucide-solid';
import { gemRing } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={gemRing} />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { gemRing } from '@lucide/lab';
@NgModule({
imports: [
LucideAngularModule.pick({ GemRing: gemRing })
],
})
// app.component.html
<lucide-icon name="GemRing"></lucide-icon>
看看这个图标的实际效果
错误
功能
Gem
112
8
11