Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

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

创建时间:

v0.0.0

最后修改:

v0.511.0

Contributors:

colebemisericfennis
html
<script>
import { createIcons, tv } from 'lucide';

createIcons({
  icons: {
    tv
  }
});
</script>

<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';
</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
<div class="icon-tv"></div>

看看这个图标的实际效果

错误
功能
Tv
112
8
11