Skip to content

smartphone-charging

phone • cellphone • device • power • screen

Created:

v0.15.24

Last changed:

v0.133.0

Contributors:

mittalyashuericfennis
html
<i data-lucide="smartphone-charging"></i>
tsx
import { SmartphoneCharging } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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