Skip to content

heart-off

unlike • dislike • hate • emotion

Created:

v0.31.0

Last changed:

v0.143.0

Contributors:

karsa-mistmereericfennisdanielbayley
html
<i data-lucide="heart-off"></i>
tsx
import { HeartOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-heart-off"></div>