Skip to content

soccer-pitch

lab

football • field • stadium • ground • surface • grass • futbol • kick • goal • score • bounce

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

createIcons({
  icons: {
    soccerPitch
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Soccer
112
8
11