Skip to content

wind

weather • air • blow

Created:

v0.0.0

Last changed:

v0.18.0

Contributors:

colebemiscsandmanericfennis
html
<i data-lucide="wind"></i>
tsx
import { Wind } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Wind } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="wind"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-wind"></div>