Skip to content

heart-handshake

agreement • charity • help • deal • terms • emotion • together • handshake

Created:

v0.62.0

Last changed:

v0.143.0

Contributors:

karsa-mistmeredanielbayley
html
<i data-lucide="heart-handshake"></i>
tsx
import { HeartHandshake } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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