Skip to content

hand-heart

love • like • emotion

Created:

v0.316.0

Last changed:

v0.316.0

Contributors:

danielbayleykayleyhill
html
<i data-lucide="hand-heart"></i>
tsx
import { HandHeart } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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