Lucide v1 is out!🚀
You're looking at the site for v1, for v0 go to v0 site

Skip to content

goal-net

lab

score • football • futbol • soccer • ice hockey • posts • crossbar • kick • pitch • penalty

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

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Goal
112
8
11