Skip to content

hairdryer

lab

hairdrier • hairstyle • hairdresser • salon • styling • heat • amenities • electronics

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { hairdryer } from '@lucide/lab';

createIcons({
  icons: {
    hairdryer
  }
});

document.body.append('<i data-lucide="hairdryer"></i>');  
tsx
import { Icon } from 'lucide-react';
import { hairdryer } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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