Skip to content

shovel

dig • spade • treasure

Created:

v0.11.0

Last changed:

v0.18.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="shovel"></i>
tsx
import { Shovel } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-shovel"></div>
dart
Icon(LucideIcons.shovel);