Skip to content

air-vent

air conditioner • ac • central air • cooling • climate-control

Created:

v0.74.0

Last changed:

v0.74.0

Contributors:

karsa-mistmere
html
<i data-lucide="air-vent"></i>
tsx
import { AirVent } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-air-vent"></div>