Skip to content

horse-head

lab

donkey • pony • calf • filly • stallion • steed • mare • mammal • equestrian • horseback • ride • riding • racing • furlong • betting • gambling • 🐴

Contributors:

danielbayleykarsa-mistmere
js
import { createIcons, icons } from 'lucide';
import { horseHead } from '@lucide/lab';

createIcons({
  icons: {
    horseHead
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Horse
112
8
11