Skip to content

smartphone-nfc

contactless • payment • near-field communication • screen

Created:

v0.124.0

Last changed:

v0.133.0

Contributors:

karsa-mistmerejguddasericfennis
html
<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-next';
</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
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-smartphone-nfc"></div>