Skip to content

football

lab

rugby • american • touchdown • kick • pitch • team • goal • score • bounce • super bowl • nfl

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

createIcons({
  icons: {
    football
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Football
112
8
11