Skip to content

wrench-off

account • settings • spanner • diy • toolbox • build • construction • off • service • maintenance • disabled

Created:

v1.19.0

Last changed:

v1.19.0

Contributors:

Andretoericfenniscsandmankarsa-mistmerenilsjonsson
html
<script>
import { createIcons, wrenchOff } from 'lucide';

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

<i data-lucide="wrench-off"></i>  
tsx
import { WrenchOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="wrench-off"></lucide-icon>
html
<div class="icon-wrench-off"></div>

See this icon in action

Bug
Feature
Wrench
112
8
11