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

Skip to content

signal

connection • wireless • gsm • phone • 2g • 3g • 4g • 5g

创建时间:

v0.16.27

最后修改:

v0.16.27

Contributors:

ericfennis
html
<script>
import { createIcons, signal } from 'lucide';

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

<i data-lucide="signal"></i>  
tsx
import { Signal } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Signal } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="signal"></lucide-icon>
html
<div class="icon-signal"></div>

看看这个图标的实际效果

错误
功能
Signal
112
8
11