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

Skip to content

arrow-big-down-dash

backwards • reverse • slow • direction • south • download

创建时间:

v0.175.0

最后修改:

v1.1.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Arrow
112
8
11