Skip to content

tv

television • stream • display • widescreen • high-definition • hd • 1080p • 4k • 8k • smart • digital • video • entertainment • showtime • channels • terrestrial • satellite • cable • broadcast • live • frequency • tune • scan • aerial • receiver • transmission • signal • connection • connectivity

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemisericfennis
html
<i data-lucide="tv"></i>
tsx
import { Tv } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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