Skip to content

chef-hat

cooking • food • kitchen • restaurant

Created:

v0.47.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="chef-hat"></i>
tsx
import { ChefHat } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-chef-hat"></div>
dart
Icon(LucideIcons.chef-hat);