Skip to content

move-up-left

arrow • direction

Created:

v0.226.0

Last changed:

v0.226.0

Contributors:

jonas-hoebenreich
html
<i data-lucide="move-up-left"></i>
tsx
import { MoveUpLeft } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-move-up-left"></div>