Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

send-horizontal

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

创建时间:

v0.262.0

最后修改:

v0.437.0

Contributors:

danielbayleykarsa-mistmere
html
<script>
import { createIcons, sendHorizontal } from 'lucide';

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

<i data-lucide="send-horizontal"></i>  
tsx
import { SendHorizontal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="send-horizontal"></lucide-icon>
html
<div class="icon-send-horizontal"></div>

看看这个图标的实际效果

错误
功能
Send
112
8
11