Skip to content

high-heel

lab

stiletto • platform • shoe • footwear • womens • girls • female • ladies • store • sexy • classy • clothing • clothes • apparel • attire • outfit • fashion • formal • fancy • refined • dressy • smart • elegant • evening • nightlife • club • party • occasion • gathering • leather

Contributors:

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

createIcons({
  icons: {
    highHeel
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
High
112
8
11