Skip to content

bat-ball

lab

table tennis • ping-pong • whiff-whaff • paddle • racquet • racket • net • bounce • score

js
import { createIcons, icons } from 'lucide';
import { batBall } from '@lucide/lab';

createIcons({
  icons: {
    batBall
  }
});

document.body.append('<i data-lucide="bat-ball"></i>');  
tsx
import { Icon } from 'lucide-react';
import { batBall } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Bat
112
8
11