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

Skip to content

hand

wave • move • mouse • grab

创建时间:

v0.12.0

最后修改:

v0.391.0

Contributors:

ericfennis
html
<script>
import { createIcons, hand } from 'lucide';

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

<i data-lucide="hand"></i>  
tsx
import { Hand } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Hand
112
8
11