Skip to content

axe

hatchet • weapon • chop • sharp • equipment • fireman • firefighter • brigade • lumberjack • woodcutter • logger • forestry

Created:

v0.11.0

Last changed:

v0.147.0

Contributors:

Andretoericfenniscsandmanjguddaskarsa-mistmere
html
<i data-lucide="axe"></i>
tsx
import { Axe } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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