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

Skip to content

smartphone-nfc

contactless • payment • near-field communication • screen

创建时间:

v0.124.0

最后修改:

v0.133.0

Contributors:

karsa-mistmerejguddasericfennis
html
<script>
import { createIcons, smartphoneNfc } from 'lucide';

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

<i data-lucide="smartphone-nfc"></i>  
tsx
import { SmartphoneNfc } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Smartphone
112
8
11