Lucide v1 is out! You're looking at the site for v1, for v0 go to v0 site

Skip to content

heart-x

unlike • unfavorite • remove • reject • dismiss • delete • clear

Created:

v1.10.0

Last changed:

v1.10.0

Contributors:

colebemisericfennisdanielbayleykarsa-mistmerejguddasAyberkyvsUsamaKhanswastik7805
html
<script>
import { createIcons, heartX } from 'lucide';

createIcons({
  icons: {
    heartX
  }
});
</script>

<i data-lucide="heart-x"></i>  
tsx
import { HeartX } from 'lucide-react';

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

export default App;
vue
<script setup>
import { HeartX } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="heart-x"></lucide-icon>
html
<div class="icon-heart-x"></div>

See this icon in action

Bug
Feature
Heart
112
8
11