Skip to content

layer-arrow-up

move forward • forward • raise • lift • promote • advance • step forward • reorder • arrange • stack • stacking • z-index • depth • graphics • design

Created:

v1.29.0

Last changed:

v1.29.0

Contributors:

colebemisdanielbayleyjguddaskarsa-mistmere
html
<script>
import { createIcons, layerArrowUp } from 'lucide';

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

<i data-lucide="layer-arrow-up"></i>  
tsx
import { LayerArrowUp } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="layer-arrow-up"></lucide-icon>
html
<div class="icon-layer-arrow-up"></div>

See this icon in action

Bug
Feature
Layer
112
8
11