Skip to content

arrow-big-up-dash

caps lock • capitals • keyboard • button • mac • forward • direction • north • faster • speed • boost

Created:

v0.175.0

Last changed:

v0.175.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="arrow-big-up-dash"></i>
tsx
import { ArrowBigUpDash } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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