Skip to content

battery-full

power • electricity • energy • accumulator • charge

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmerejohnletey
html
<i data-lucide="battery-full"></i>
tsx
import { BatteryFull } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-battery-full"></div>