Skip to content

bolt

nut • screw • settings • preferences • configuration • controls • edit • diy • fixed • build • contruction • parts

Created:

v0.304.0

Last changed:

v0.304.0

Contributors:

danielbayley
html
<i data-lucide="bolt"></i>
tsx
import { Bolt } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-bolt"></div>