Skip to content

arrow-big-down-dash

backwards • reverse • slow • direction • south • download

Created:

v0.175.0

Last changed:

v0.324.0

Contributors:

danielbayleykarsa-mistmere
html
<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-next';
</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
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-arrow-big-down-dash"></div>