webhook
html
<script>
import { createIcons, webhook } from 'lucide';
createIcons({
icons: {
webhook
}
});
</script>
<i data-lucide="webhook"></i>
tsx
import { Webhook } from 'lucide-react';
const App = () => {
return (
<Webhook />
);
};
export default App;
vue
<script setup>
import { Webhook } from 'lucide-vue-next';
</script>
<template>
<Webhook />
</template>
svelte
<script>
import { Webhook } from 'lucide-svelte';
</script>
<Webhook />
tsx
import { Webhook } from 'lucide-preact';
const App = () => {
return (
<Webhook />
);
};
export default App;
tsx
import { Webhook } from 'lucide-solid';
const App = () => {
return (
<Webhook />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Webhook } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ Webhook })
],
})
// app.component.html
<lucide-icon name="webhook"></lucide-icon>
html
<div class="icon-webhook"></div>
See this icon in action
Bug
Feature
Webhook
112
8
11