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

Skip to content

volleyball

lab

beach • sand • net • holiday • vacation • summer • soccer • football • futbol • kick • pitch • goal • score • bounce • leather • wool • yarn • knitting • sewing • thread • embroidery • textile

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Volleyball
112
8
11