Skip to content

tool-case

tools • maintenance • repair

Created:

v0.525.0

Last changed:

v0.525.0

Contributors:

AlexNaskidakarsa-mistmerejguddas
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="tool-case"></i>');  
tsx
import { ToolCase } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="tool-case"></lucide-icon>
html
<div class="icon-tool-case"></div>

See this icon in action

Bug
Feature
Tool
112
8
11