html
<script>
import { createIcons, hd } from 'lucide';
createIcons({
icons: {
hd
}
});
</script>
<i data-lucide="hd"></i>
tsx
import { Hd } from 'lucide-react';
const App = () => {
return (
<Hd />
);
};
export default App;
vue
<script setup>
import { Hd } from 'lucide-vue-next';
</script>
<template>
<Hd />
</template>
svelte
<script>
import { Hd } from 'lucide-svelte';
</script>
<Hd />
tsx
import { Hd } from 'lucide-preact';
const App = () => {
return (
<Hd />
);
};
export default App;
tsx
import { Hd } from 'lucide-solid';
const App = () => {
return (
<Hd />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Hd } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ Hd })
],
})
// app.component.html
<lucide-icon name="hd"></lucide-icon>
html
<div class="icon-hd"></div>
See this icon in action
Bug
Feature
Hd
112
8
11