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

Skip to content

arrow-big-right-dash

next • forward • direction • east • turn • corner

创建时间:

v0.175.0

最后修改:

v1.1.0

Contributors:

danielbayleykarsa-mistmerejamiemlawjguddas
html
<script>
import { createIcons, arrowBigRightDash } from 'lucide';

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

<i data-lucide="arrow-big-right-dash"></i>  
tsx
import { ArrowBigRightDash } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="arrow-big-right-dash"></lucide-icon>
html
<div class="icon-arrow-big-right-dash"></div>

看看这个图标的实际效果

错误
功能
Arrow
112
8
11