Skip to content

send-horizonal

email • message • mail • paper airplane • paper aeroplane • submit

Created:

v0.262.0

Last changed:

v0.262.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide-name="send-horizonal"></i>
tsx
import { SendHorizonal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-send-horizonal"></div>
dart
Icon(LucideIcons.send-horizonal);