Skip to content

hd

tv • resolution • video • high definition • 720p • 1080p

Created:

v0.558.0

Last changed:

v0.558.0

Contributors:

ahtohbi4jamiemlawkarsa-mistmerejguddas
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