Skip to content

whistle

alert • signal • sound • blow • noise • coach • trainer • referee • gym • game • training • sports • traffic cops • police • lifeguard • safety • rescue • emergency

Created:

v1.39.0

Last changed:

v1.39.0

Contributors:

briz123UsamaKhanajokt123timmy471jguddaskarsa-mistmere
html
<script>
import { createIcons, Whistle } from 'lucide';

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

<i data-lucide="whistle"></i>  
tsx
import { Whistle } from 'lucide-react';

const App = () => {
  return (
    <Whistle />
  );
};

export default App;
vue
<script setup>
import { Whistle } from '@lucide/vue';
</script>

<template>
  <Whistle />
</template>
svelte
<script>
import { Whistle } from 'lucide-svelte';
</script>

<Whistle />
tsx
import { Whistle } from 'lucide-preact';

const App = () => {
  return (
    <Whistle />
  );
};

export default App;
tsx
import { Whistle } from 'lucide-solid';

const App = () => {
  return (
    <Whistle />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Whistle } from 'lucide-angular';

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

// app.component.html
<lucide-icon name="whistle"></lucide-icon>
html
<div class="icon-whistle"></div>

See this icon in action

Bug
Feature
Whistle
112
8
11