Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

shovel-dig

lab

spade • gardening • equipment • soil • dirt • dig • excavate • bury • buried • treasure • seaside • summer holiday • beach • sandcastle • sandbox • toys • kids • children • play • bucket

Contributors:

danielbayley
html
<script>
import { createIcons } from 'lucide';
import { shovelDig } from '@lucide/lab';

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

<i data-lucide="shovel-dig"></i>  
tsx
import { Icon } from 'lucide-react';
import { shovelDig } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={shovelDig} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { shovelDig } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="shovelDig" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { shovelDig } from '@lucide/lab';
</script>

<Icon iconNode={shovelDig} />
tsx
import { Icon } from 'lucide-preact';
import { shovelDig } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={shovelDig} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { shovelDig } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={shovelDig} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { shovelDig } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="ShovelDig"></lucide-icon>

看看这个图标的实际效果

错误
功能
Shovel
112
8
11