Skip to content

tv-2

flatscreen • television • stream • display • widescreen • high-definition • hd • 1080p • 4k • 8k • smart • digital • video • home cinema • entertainment • showtime • channels • catchup

Created:

v0.14.0

Last changed:

v0.133.0

Contributors:

ericfennis
html
<i data-lucide="tv-2"></i>
tsx
import { Tv2 } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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